Sha256: ffe3790f009541c8bff507a678090b021052385801087323a252828a1cd00e9b
Contents?: true
Size: 1.04 KB
Versions: 51
Compression:
Stored size: 1.04 KB
Contents
# OpenapiClient::TokenResponse ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **access_token** | **String** | The issued access_token | [readonly] | | **mode** | [**ModeResponse**](ModeResponse.md) | | | | **provider** | [**ProviderResponse**](ProviderResponse.md) | | | | **scopes** | [**Array<ScopesResponse>**](ScopesResponse.md) | One or more scope values indicating which parts of the user's account you wish to access. Note, slight deviation from the OAuth 2.1 spec in that the param is scopes (plural) is used vs scope (singular) | [readonly] | | **token_type** | **String** | The token type to pass in the `Authorization` header | [readonly] | ## Example ```ruby require 'openapi_client' instance = OpenapiClient::TokenResponse.new( access_token: Y2xpZW50IzkzMTU4MGQwLWYwYjctNGJiOC1iYmZmLWI4MTNlYzMxNTVjYXx0b2tlbiM4ZDY5NzMwZi1kNzI1LTQ1ZjYtYTVlOC1mZmQ0NWE3ZjhkNDE=, mode: null, provider: null, scopes: ["identity","census"], token_type: Bearer ) ```
Version data entries
51 entries across 51 versions & 1 rubygems