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

- old
+ new

@@ -1,14 +1,29 @@ # OpenapiClient::PaymentTokenDetails ## Properties + Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **value** | **String** | Client-supplied payment token value. Only applicable for DataVault tokenization scheme. | [optional] -**reusable** | **BOOLEAN** | If the token is reusable. | [optional] [default to true] -**decline_duplicates** | **BOOLEAN** | Decline duplicate payment info if client token is supplied. | [optional] [default to false] +**reusable** | **Boolean** | If the token is reusable. | [optional] [default to true] +**decline_duplicates** | **Boolean** | Decline duplicate payment info if client token is supplied. | [optional] [default to false] **last4** | **String** | The last 4 numbers of a payment card. | [optional] **brand** | **String** | Card brand, only for tokenization with payment. | [optional] -**account_verification** | **BOOLEAN** | If the account the token was created from has been verified. | [optional] +**account_verification** | **Boolean** | If the account the token was created from has been verified. | [optional] **type** | **String** | Inidcates the type of tokenization source. | [optional] + +## Code Sample + +```ruby +require 'OpenapiClient' + +instance = OpenapiClient::PaymentTokenDetails.new(value: 234ljl124l12, + reusable: true, + decline_duplicates: false, + last4: 4997, + brand: VISA, + account_verification: true, + type: PAYMENT_CARD) +```