Sha256: 32757f9ae564a89673150cdac637589abb03ecc6fb3b5e34199ee0bf9eae9293

Contents?: true

Size: 1.09 KB

Versions: 20

Compression:

Stored size: 1.09 KB

Contents

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

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

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
ory-client-0.2.0.alpha48 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha47 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha46 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha45 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha44 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha43 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha42 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha41 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha40 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha39 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha38 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha37 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha36 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha35 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha34 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha33 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha32 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha31 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha30 docs/OauthTokenResponse.md
ory-client-0.2.0.alpha29 docs/OauthTokenResponse.md