Back to Hydra

OAuth2TokenExchange

internal/httpclient/docs/OAuth2TokenExchange.md

26.2.05.5 KB
Original Source

OAuth2TokenExchange

Properties

NameTypeDescriptionNotes
AccessTokenPointer to stringThe access token issued by the authorization server.[optional]
ExpiresInPointer to int64The 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]
IdTokenPointer to stringTo retrieve a refresh token request the id_token scope.[optional]
RefreshTokenPointer to stringThe refresh token, which can be used to obtain new access tokens. To retrieve it add the scope "offline" to your access token request.[optional]
ScopePointer to stringThe scope of the access token[optional]
TokenTypePointer to stringThe type of the token issued[optional]

Methods

NewOAuth2TokenExchange

func NewOAuth2TokenExchange() *OAuth2TokenExchange

NewOAuth2TokenExchange instantiates a new OAuth2TokenExchange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewOAuth2TokenExchangeWithDefaults

func NewOAuth2TokenExchangeWithDefaults() *OAuth2TokenExchange

NewOAuth2TokenExchangeWithDefaults instantiates a new OAuth2TokenExchange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetAccessToken

func (o *OAuth2TokenExchange) GetAccessToken() string

GetAccessToken returns the AccessToken field if non-nil, zero value otherwise.

GetAccessTokenOk

func (o *OAuth2TokenExchange) GetAccessTokenOk() (*string, bool)

GetAccessTokenOk returns a tuple with the AccessToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAccessToken

func (o *OAuth2TokenExchange) SetAccessToken(v string)

SetAccessToken sets AccessToken field to given value.

HasAccessToken

func (o *OAuth2TokenExchange) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

GetExpiresIn

func (o *OAuth2TokenExchange) GetExpiresIn() int64

GetExpiresIn returns the ExpiresIn field if non-nil, zero value otherwise.

GetExpiresInOk

func (o *OAuth2TokenExchange) GetExpiresInOk() (*int64, bool)

GetExpiresInOk returns a tuple with the ExpiresIn field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetExpiresIn

func (o *OAuth2TokenExchange) SetExpiresIn(v int64)

SetExpiresIn sets ExpiresIn field to given value.

HasExpiresIn

func (o *OAuth2TokenExchange) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

GetIdToken

func (o *OAuth2TokenExchange) GetIdToken() string

GetIdToken returns the IdToken field if non-nil, zero value otherwise.

GetIdTokenOk

func (o *OAuth2TokenExchange) GetIdTokenOk() (*string, bool)

GetIdTokenOk returns a tuple with the IdToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetIdToken

func (o *OAuth2TokenExchange) SetIdToken(v string)

SetIdToken sets IdToken field to given value.

HasIdToken

func (o *OAuth2TokenExchange) HasIdToken() bool

HasIdToken returns a boolean if a field has been set.

GetRefreshToken

func (o *OAuth2TokenExchange) GetRefreshToken() string

GetRefreshToken returns the RefreshToken field if non-nil, zero value otherwise.

GetRefreshTokenOk

func (o *OAuth2TokenExchange) GetRefreshTokenOk() (*string, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetRefreshToken

func (o *OAuth2TokenExchange) SetRefreshToken(v string)

SetRefreshToken sets RefreshToken field to given value.

HasRefreshToken

func (o *OAuth2TokenExchange) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

GetScope

func (o *OAuth2TokenExchange) GetScope() string

GetScope returns the Scope field if non-nil, zero value otherwise.

GetScopeOk

func (o *OAuth2TokenExchange) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetScope

func (o *OAuth2TokenExchange) SetScope(v string)

SetScope sets Scope field to given value.

HasScope

func (o *OAuth2TokenExchange) HasScope() bool

HasScope returns a boolean if a field has been set.

GetTokenType

func (o *OAuth2TokenExchange) GetTokenType() string

GetTokenType returns the TokenType field if non-nil, zero value otherwise.

GetTokenTypeOk

func (o *OAuth2TokenExchange) GetTokenTypeOk() (*string, bool)

GetTokenTypeOk returns a tuple with the TokenType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTokenType

func (o *OAuth2TokenExchange) SetTokenType(v string)

SetTokenType sets TokenType field to given value.

HasTokenType

func (o *OAuth2TokenExchange) HasTokenType() bool

HasTokenType returns a boolean if a field has been set.

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