docs/AuthResponse.md in velopayments-2.23.78.beta1 vs docs/AuthResponse.md in velopayments-2.26.124.beta1
- old
+ new
@@ -1,27 +1,28 @@
# VeloPayments::AuthResponse
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**access_token** | **String** | |
-**token_type** | **String** | |
-**expires_in** | **Float** | | [optional]
-**refresh_token** | **String** | | [optional]
-**scope** | **String** | | [optional]
-**entity_ids** | **Array<String>** | | [optional]
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **access_token** | **String** | | |
+| **token_type** | **String** | | |
+| **expires_in** | **Float** | | [optional] |
+| **refresh_token** | **String** | | [optional] |
+| **scope** | **String** | | [optional] |
+| **entity_ids** | **Array<String>** | | [optional] |
-## Code Sample
+## Example
```ruby
-require 'VeloPayments'
+require 'velopayments'
-instance = VeloPayments::AuthResponse.new(access_token: null,
- token_type: bearer,
- expires_in: 1799,
- refresh_token: IwOGYzYTlmM2YxOTQ5MGE3YmNmMDFkNTVk,
- scope: example_scope,
- entity_ids: null)
+instance = VeloPayments::AuthResponse.new(
+ access_token: null,
+ token_type: bearer,
+ expires_in: 1799,
+ refresh_token: IwOGYzYTlmM2YxOTQ5MGE3YmNmMDFkNTVk,
+ scope: example_scope,
+ entity_ids: null
+)
```
-