docs/RecurringPaymentDetailsResponse.md in first_data_gateway-1.2.0 vs docs/RecurringPaymentDetailsResponse.md in first_data_gateway-1.3.0

- old
+ new

@@ -1,8 +1,9 @@ # OpenapiClient::RecurringPaymentDetailsResponse ## Properties + Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **client_request_id** | **String** | Echoes back the value in the request header for tracking. | [optional] **api_trace_id** | **String** | Request identifier in API, can be used to request logs from the support team. | [optional] **response_type** | [**ResponseType**](ResponseType.md) | | [optional] @@ -12,7 +13,25 @@ **shipping** | [**Shipping**](Shipping.md) | | [optional] **mandate** | [**SepaMandate**](SepaMandate.md) | | [optional] **transactions** | [**Array<Transaction>**](Transaction.md) | Required for some payment methods (for example, Klarna). | [optional] **processor** | [**ProcessorData**](ProcessorData.md) | | [optional] **recurring_payment_details** | [**RecurringPaymentDetails**](RecurringPaymentDetails.md) | | [optional] + +## Code Sample + +```ruby +require 'OpenapiClient' + +instance = OpenapiClient::RecurringPaymentDetailsResponse.new(client_request_id: 30dd879c-ee2f-11db-8314-0800200c9a66, + api_trace_id: rrt-0bd552c12342d3448-b-ea-1142-12938318-7, + response_type: null, + order_id: 123456, + transaction_time: 1518811817, + billing: null, + shipping: null, + mandate: null, + transactions: [{"transactionState":"AUTHORIZED","ipgTransactionId":"838916029301","transactionType":"SALE","transactionAmount":{"total":10.24,"currency":"USD"},"storeId":"1109959991"}], + processor: null, + recurring_payment_details: null) +```