docs/AccessTokenResponse.md in first_data_gateway-1.5.0 vs docs/AccessTokenResponse.md in first_data_gateway-1.6.0
- old
+ new
@@ -2,20 +2,28 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**access_token** | **String** | Access token for authentication. | [optional]
+**token_id** | **String** | Access token for authentication. | [optional]
+**status** | **String** | The token status. | [optional]
+**issued_on** | **String** | Access token issued time in milliseconds. | [optional]
+**expires_in_seconds** | **String** | Access token expiration time. | [optional]
+**public_key_base64** | **String** | Public key to encrypt data. | [optional]
+**algorithm** | **String** | Encyption algorithym. One way ECDH 256 bit key. | [optional]
**client_request_id** | **String** | Echoes back the value from the request header for tracking. | [optional]
-**request_status** | **String** | The result of the requested operation. If this is anything other than 'SUCCESS', please refer to the 400s HTTP error codes. See ErrorResponse object for details. | [optional]
## Code Sample
```ruby
require 'OpenapiClient'
-instance = OpenapiClient::AccessTokenResponse.new(access_token: Rft3dqrs56Blirls56a,
- client_request_id: 30dd879c-ee2f-11db-8314-0800200c9a66,
- request_status: null)
+instance = OpenapiClient::AccessTokenResponse.new(token_id: gliF92ypj9cKRWUP8lpRIbI3bhNf,
+ status: ACTIVE,
+ issued_on: 1579021570941,
+ expires_in_seconds: 899,
+ public_key_base64: LS0tLS1CRUdJTiBQLbnFSNXRnVmc4U08LS1FTkQgUFVCTElDIEtFWS0tLS0t,
+ algorithm: RSA/NONE/PKCS1PADDING,
+ client_request_id: 30dd879c-ee2f-11db-8314-0800200c9a66)
```