Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 1.12 KB

OauthTokenResponse.md

File metadata and controls

15 lines (11 loc) · 1.12 KB

OauthTokenResponse

Properties

Name Type Description Notes
AccessToken string The access token issued by the authorization server. [optional] [default to null]
ExpiresIn int64 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] [default to null]
IdToken int64 To retrieve a refresh token request the id_token scope. [optional] [default to null]
RefreshToken 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] [default to null]
Scope int64 The scope of the access token [optional] [default to null]
TokenType string The type of the token issued [optional] [default to null]

[Back to Model list] [Back to API list] [Back to README]