Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 2.23 KB

ModelResponseAccessToken.md

File metadata and controls

72 lines (39 loc) · 2.23 KB

ModelResponseAccessToken

Properties

Name Type Description Notes
AccessToken string
RefreshToken string

Methods

NewModelResponseAccessToken

func NewModelResponseAccessToken(accessToken string, refreshToken string, ) *ModelResponseAccessToken

NewModelResponseAccessToken instantiates a new ModelResponseAccessToken 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

NewModelResponseAccessTokenWithDefaults

func NewModelResponseAccessTokenWithDefaults() *ModelResponseAccessToken

NewModelResponseAccessTokenWithDefaults instantiates a new ModelResponseAccessToken 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 *ModelResponseAccessToken) GetAccessToken() string

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

GetAccessTokenOk

func (o *ModelResponseAccessToken) 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 *ModelResponseAccessToken) SetAccessToken(v string)

SetAccessToken sets AccessToken field to given value.

GetRefreshToken

func (o *ModelResponseAccessToken) GetRefreshToken() string

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

GetRefreshTokenOk

func (o *ModelResponseAccessToken) 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 *ModelResponseAccessToken) SetRefreshToken(v string)

SetRefreshToken sets RefreshToken field to given value.

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