docs/PaymentCardForcedTicketTransaction.md in first_data_gateway-1.2.0 vs docs/PaymentCardForcedTicketTransaction.md in first_data_gateway-1.3.0
- old
+ new
@@ -1,15 +1,19 @@
# OpenapiClient::PaymentCardForcedTicketTransaction
## 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) | |
**reference_number** | **String** | Stores the six-digit reference number you have received as the result of a successful external authorization (e.g. by phone). The gateway needs this number for uniquely mapping a ForcedTicket transaction to a previously performed external authorization. |
+
+## Code Sample
+
+```ruby
+require 'OpenapiClient'
+
+instance = OpenapiClient::PaymentCardForcedTicketTransaction.new(payment_method: null,
+ reference_number: 123455)
+```