docs/PaymentTokenPreAuthTransactionAllOf.md in first_data_gateway-1.6.0 vs docs/PaymentTokenPreAuthTransactionAllOf.md in first_data_gateway-1.7.0

- old
+ new

@@ -8,10 +8,11 @@ **stored_credentials** | [**StoredCredential**](StoredCredential.md) | | [optional] **split_shipment** | [**SplitShipment**](SplitShipment.md) | | [optional] **settlement_split** | [**Array<SubMerchantSplit>**](SubMerchantSplit.md) | Settle with multiple sub-merchants, sale and preAuth only. | [optional] **authentication_request** | [**AuthenticationRequest**](AuthenticationRequest.md) | | [optional] **authentication_result** | [**AuthenticationResult**](AuthenticationResult.md) | | [optional] +**decremental_flag** | **Boolean** | This flag can only be used in a preAuth transaction that updates the amount of a previous preAuth transaction to either increase the preAuth amount (DecrementalPreAuthFlag = false) or decrease the preAuth amount (DecrementalPreAuthFlag = true). | [optional] [default to false] ## Code Sample ```ruby require 'OpenapiClient' @@ -19,9 +20,10 @@ instance = OpenapiClient::PaymentTokenPreAuthTransactionAllOf.new(payment_method: null, stored_credentials: null, split_shipment: null, settlement_split: [{"merchantID":"100000001","amount":25.06},{"merchantID":"100000002","amount":15.07}], authentication_request: null, - authentication_result: null) + authentication_result: null, + decremental_flag: false) ```