docs/PaymentCardSaleTransaction.md in first_data_gateway-1.2.0 vs docs/PaymentCardSaleTransaction.md in first_data_gateway-1.3.0
- old
+ new
@@ -1,18 +1,25 @@
# OpenapiClient::PaymentCardSaleTransaction
## Properties
+
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**request_type** | **String** | Object name of the primary transaction request. |
-**store_id** | **String** | An optional outlet ID for clients that support multiple stores in the same app. | [optional]
-**merchant_transaction_id** | **String** | The unique merchant transaction ID from the request header, if supplied. | [optional]
-**transaction_amount** | [**Amount**](Amount.md) | |
-**transaction_origin** | [**TransactionOrigin**](TransactionOrigin.md) | | [optional]
-**order** | [**Order**](Order.md) | | [optional]
**payment_method** | [**PaymentCardPaymentMethod**](PaymentCardPaymentMethod.md) | |
**stored_credentials** | [**StoredCredential**](StoredCredential.md) | | [optional]
**settlement_split** | [**Array<SubMerchantSplit>**](SubMerchantSplit.md) | Settle with multiple sub-merchants, sale and preAuth only. | [optional]
**create_token** | [**CreatePaymentToken**](CreatePaymentToken.md) | | [optional]
**currency_conversion** | [**CurrencyConversion**](CurrencyConversion.md) | | [optional]
+
+## Code Sample
+
+```ruby
+require 'OpenapiClient'
+
+instance = OpenapiClient::PaymentCardSaleTransaction.new(payment_method: null,
+ stored_credentials: null,
+ settlement_split: [{"merchantID":"100000001","amount":25.06},{"merchantID":"100000002","amount":15.07}],
+ create_token: null,
+ currency_conversion: null)
+```