Sha256: 8b3825492d261212d5b51c3723971b55cd80833e8d652c9804c6d16dfbfa7a7b
Contents?: true
Size: 1.35 KB
Versions: 8
Compression:
Stored size: 1.35 KB
Contents
# VeloPayments::AccessTokenResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **access_token** | **String** | Bearer token used in headers to access secure endpoints | [optional] **token_type** | **String** | the type of the token | [optional] [default to 'bearer'] **refresh_token** | **String** | can be used to obtain a new access token | [optional] **expires_in** | **Integer** | The lifetime in seconds of the access token | [optional] **scope** | **String** | the scope of the access token | [optional] **user_info** | [**UserInfo**](UserInfo.md) | | [optional] **entity_ids** | **Array<String>** | If the user is a payee then the payeeId<P> If the user is a payor then the payorId | [optional] ## Code Sample ```ruby require 'VeloPayments' instance = VeloPayments::AccessTokenResponse.new(access_token: 9b58410b-e1b7-4f90-bebb-7e09c5427020, token_type: bearer, refresh_token: c3d0f771-0997-4814-84e3-09690208545a, expires_in: 1800, scope: https://api.velopayments.com/scopes/auth/users, user_info: null, entity_ids: ["ed89eaa0-4450-4916-a4ff-62a328d60bd6"]) ```
Version data entries
8 entries across 8 versions & 1 rubygems