docs/AuthResponse.md in velopayments-2.14.90.pre.1 vs docs/AuthResponse.md in velopayments-2.17.8.beta1
- old
+ new
@@ -7,19 +7,21 @@
**access_token** | **String** | |
**token_type** | **String** | |
**expires_in** | **Float** | | [optional]
**refresh_token** | **String** | | [optional]
**scope** | **String** | | [optional]
+**entity_ids** | **Array<String>** | | [optional]
## Code Sample
```ruby
require 'VeloPayments'
instance = VeloPayments::AuthResponse.new(access_token: null,
token_type: bearer,
expires_in: 1799,
refresh_token: IwOGYzYTlmM2YxOTQ5MGE3YmNmMDFkNTVk,
- scope: example_scope)
+ scope: example_scope,
+ entity_ids: null)
```