Back to Hydra

OAuth2LogoutRequest

internal/httpclient/docs/OAuth2LogoutRequest.md

26.2.06.7 KB
Original Source

OAuth2LogoutRequest

Properties

NameTypeDescriptionNotes
ChallengePointer to stringChallenge is the identifier of the logout authentication request.[optional]
ClientPointer to OAuth2Client[optional]
ExpiresAtPointer to time.Time[optional]
RequestUrlPointer to stringRequestURL is the original Logout URL requested.[optional]
RequestedAtPointer to time.Time[optional]
RpInitiatedPointer to boolRPInitiated is set to true if the request was initiated by a Relying Party (RP), also known as an OAuth 2.0 Client.[optional]
SidPointer to stringSessionID is the login session ID that was requested to log out.[optional]
SubjectPointer to stringSubject is the user for whom the logout was request.[optional]

Methods

NewOAuth2LogoutRequest

func NewOAuth2LogoutRequest() *OAuth2LogoutRequest

NewOAuth2LogoutRequest instantiates a new OAuth2LogoutRequest 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

NewOAuth2LogoutRequestWithDefaults

func NewOAuth2LogoutRequestWithDefaults() *OAuth2LogoutRequest

NewOAuth2LogoutRequestWithDefaults instantiates a new OAuth2LogoutRequest 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

GetChallenge

func (o *OAuth2LogoutRequest) GetChallenge() string

GetChallenge returns the Challenge field if non-nil, zero value otherwise.

GetChallengeOk

func (o *OAuth2LogoutRequest) GetChallengeOk() (*string, bool)

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

SetChallenge

func (o *OAuth2LogoutRequest) SetChallenge(v string)

SetChallenge sets Challenge field to given value.

HasChallenge

func (o *OAuth2LogoutRequest) HasChallenge() bool

HasChallenge returns a boolean if a field has been set.

GetClient

func (o *OAuth2LogoutRequest) GetClient() OAuth2Client

GetClient returns the Client field if non-nil, zero value otherwise.

GetClientOk

func (o *OAuth2LogoutRequest) GetClientOk() (*OAuth2Client, bool)

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

SetClient

func (o *OAuth2LogoutRequest) SetClient(v OAuth2Client)

SetClient sets Client field to given value.

HasClient

func (o *OAuth2LogoutRequest) HasClient() bool

HasClient returns a boolean if a field has been set.

GetExpiresAt

func (o *OAuth2LogoutRequest) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field if non-nil, zero value otherwise.

GetExpiresAtOk

func (o *OAuth2LogoutRequest) GetExpiresAtOk() (*time.Time, bool)

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

SetExpiresAt

func (o *OAuth2LogoutRequest) SetExpiresAt(v time.Time)

SetExpiresAt sets ExpiresAt field to given value.

HasExpiresAt

func (o *OAuth2LogoutRequest) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

GetRequestUrl

func (o *OAuth2LogoutRequest) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field if non-nil, zero value otherwise.

GetRequestUrlOk

func (o *OAuth2LogoutRequest) GetRequestUrlOk() (*string, bool)

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

SetRequestUrl

func (o *OAuth2LogoutRequest) SetRequestUrl(v string)

SetRequestUrl sets RequestUrl field to given value.

HasRequestUrl

func (o *OAuth2LogoutRequest) HasRequestUrl() bool

HasRequestUrl returns a boolean if a field has been set.

GetRequestedAt

func (o *OAuth2LogoutRequest) GetRequestedAt() time.Time

GetRequestedAt returns the RequestedAt field if non-nil, zero value otherwise.

GetRequestedAtOk

func (o *OAuth2LogoutRequest) GetRequestedAtOk() (*time.Time, bool)

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

SetRequestedAt

func (o *OAuth2LogoutRequest) SetRequestedAt(v time.Time)

SetRequestedAt sets RequestedAt field to given value.

HasRequestedAt

func (o *OAuth2LogoutRequest) HasRequestedAt() bool

HasRequestedAt returns a boolean if a field has been set.

GetRpInitiated

func (o *OAuth2LogoutRequest) GetRpInitiated() bool

GetRpInitiated returns the RpInitiated field if non-nil, zero value otherwise.

GetRpInitiatedOk

func (o *OAuth2LogoutRequest) GetRpInitiatedOk() (*bool, bool)

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

SetRpInitiated

func (o *OAuth2LogoutRequest) SetRpInitiated(v bool)

SetRpInitiated sets RpInitiated field to given value.

HasRpInitiated

func (o *OAuth2LogoutRequest) HasRpInitiated() bool

HasRpInitiated returns a boolean if a field has been set.

GetSid

func (o *OAuth2LogoutRequest) GetSid() string

GetSid returns the Sid field if non-nil, zero value otherwise.

GetSidOk

func (o *OAuth2LogoutRequest) GetSidOk() (*string, bool)

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

SetSid

func (o *OAuth2LogoutRequest) SetSid(v string)

SetSid sets Sid field to given value.

HasSid

func (o *OAuth2LogoutRequest) HasSid() bool

HasSid returns a boolean if a field has been set.

GetSubject

func (o *OAuth2LogoutRequest) GetSubject() string

GetSubject returns the Subject field if non-nil, zero value otherwise.

GetSubjectOk

func (o *OAuth2LogoutRequest) GetSubjectOk() (*string, bool)

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

SetSubject

func (o *OAuth2LogoutRequest) SetSubject(v string)

SetSubject sets Subject field to given value.

HasSubject

func (o *OAuth2LogoutRequest) HasSubject() bool

HasSubject returns a boolean if a field has been set.

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