Sha256: b83c592f5830368fc42b1bf5fa12e29432aa1e04f0b1793f5ccdbc50f80d1932

Contents?: true

Size: 1.09 KB

Versions: 15

Compression:

Stored size: 1.09 KB

Contents

# OryClient::OAuth2TokenResponse

## 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-client'

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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
ory-client-0.2.0.alpha60 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha28 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha27 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha26 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha25 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha24 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha23 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha22 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha21 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha20 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha19 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha18 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha16 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha15 docs/OAuth2TokenResponse.md
ory-client-0.2.0.alpha14 docs/OAuth2TokenResponse.md