Sha256: 518def55ffe5202468538b3c8b8794deb45bbdf0853cf6267159e21509bfdc06

Contents?: true

Size: 1.11 KB

Versions: 5

Compression:

Stored size: 1.11 KB

Contents

# OryHydraClient::OauthTokenResponse

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **access_token** | **String** | The access token issued by the authorization server. | [optional] |
| **expires_in** | **Integer** | The lifetime in seconds of the access token.  For example, the value \"3600\" denotes that the access token will expire in one hour from the time the response was generated. | [optional] |
| **id_token** | **Integer** | To retrieve a refresh token request the id_token scope. | [optional] |
| **refresh_token** | **String** | The refresh token, which can be used to obtain new access tokens. To retrieve it add the scope \"offline\" to your access token request. | [optional] |
| **scope** | **Integer** | The scope of the access token | [optional] |
| **token_type** | **String** | The type of the token issued | [optional] |

## Example

```ruby
require 'ory-hydra-client'

instance = OryHydraClient::OauthTokenResponse.new(
  access_token: null,
  expires_in: null,
  id_token: null,
  refresh_token: null,
  scope: null,
  token_type: null
)
```

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ory-hydra-client-1.11.8 docs/OauthTokenResponse.md
ory-hydra-client-1.11.7 docs/OauthTokenResponse.md
ory-hydra-client-1.11.6 docs/OauthTokenResponse.md
ory-hydra-client-1.11.5 docs/OauthTokenResponse.md
ory-hydra-client-1.11.4 docs/OauthTokenResponse.md