Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 2.08 KB

LogoutFlow.md

File metadata and controls

72 lines (39 loc) · 2.08 KB

LogoutFlow

Properties

Name Type Description Notes
LogoutToken string LogoutToken can be used to perform logout using AJAX.
LogoutUrl string LogoutURL can be opened in a browser to sign the user out. format: uri

Methods

NewLogoutFlow

func NewLogoutFlow(logoutToken string, logoutUrl string, ) *LogoutFlow

NewLogoutFlow instantiates a new LogoutFlow 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

NewLogoutFlowWithDefaults

func NewLogoutFlowWithDefaults() *LogoutFlow

NewLogoutFlowWithDefaults instantiates a new LogoutFlow 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

GetLogoutToken

func (o *LogoutFlow) GetLogoutToken() string

GetLogoutToken returns the LogoutToken field if non-nil, zero value otherwise.

GetLogoutTokenOk

func (o *LogoutFlow) GetLogoutTokenOk() (*string, bool)

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

SetLogoutToken

func (o *LogoutFlow) SetLogoutToken(v string)

SetLogoutToken sets LogoutToken field to given value.

GetLogoutUrl

func (o *LogoutFlow) GetLogoutUrl() string

GetLogoutUrl returns the LogoutUrl field if non-nil, zero value otherwise.

GetLogoutUrlOk

func (o *LogoutFlow) GetLogoutUrlOk() (*string, bool)

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

SetLogoutUrl

func (o *LogoutFlow) SetLogoutUrl(v string)

SetLogoutUrl sets LogoutUrl field to given value.

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