internal/httpclient/docs/OAuth2LogoutRequest.md
| Name | Type | Description | Notes |
|---|---|---|---|
| Challenge | Pointer to string | Challenge is the identifier of the logout authentication request. | [optional] |
| Client | Pointer to OAuth2Client | [optional] | |
| ExpiresAt | Pointer to time.Time | [optional] | |
| RequestUrl | Pointer to string | RequestURL is the original Logout URL requested. | [optional] |
| RequestedAt | Pointer to time.Time | [optional] | |
| RpInitiated | Pointer to bool | RPInitiated is set to true if the request was initiated by a Relying Party (RP), also known as an OAuth 2.0 Client. | [optional] |
| Sid | Pointer to string | SessionID is the login session ID that was requested to log out. | [optional] |
| Subject | Pointer to string | Subject is the user for whom the logout was request. | [optional] |
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
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
func (o *OAuth2LogoutRequest) GetChallenge() string
GetChallenge returns the Challenge field if non-nil, zero value otherwise.
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.
func (o *OAuth2LogoutRequest) SetChallenge(v string)
SetChallenge sets Challenge field to given value.
func (o *OAuth2LogoutRequest) HasChallenge() bool
HasChallenge returns a boolean if a field has been set.
func (o *OAuth2LogoutRequest) GetClient() OAuth2Client
GetClient returns the Client field if non-nil, zero value otherwise.
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.
func (o *OAuth2LogoutRequest) SetClient(v OAuth2Client)
SetClient sets Client field to given value.
func (o *OAuth2LogoutRequest) HasClient() bool
HasClient returns a boolean if a field has been set.
func (o *OAuth2LogoutRequest) GetExpiresAt() time.Time
GetExpiresAt returns the ExpiresAt field if non-nil, zero value otherwise.
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.
func (o *OAuth2LogoutRequest) SetExpiresAt(v time.Time)
SetExpiresAt sets ExpiresAt field to given value.
func (o *OAuth2LogoutRequest) HasExpiresAt() bool
HasExpiresAt returns a boolean if a field has been set.
func (o *OAuth2LogoutRequest) GetRequestUrl() string
GetRequestUrl returns the RequestUrl field if non-nil, zero value otherwise.
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.
func (o *OAuth2LogoutRequest) SetRequestUrl(v string)
SetRequestUrl sets RequestUrl field to given value.
func (o *OAuth2LogoutRequest) HasRequestUrl() bool
HasRequestUrl returns a boolean if a field has been set.
func (o *OAuth2LogoutRequest) GetRequestedAt() time.Time
GetRequestedAt returns the RequestedAt field if non-nil, zero value otherwise.
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.
func (o *OAuth2LogoutRequest) SetRequestedAt(v time.Time)
SetRequestedAt sets RequestedAt field to given value.
func (o *OAuth2LogoutRequest) HasRequestedAt() bool
HasRequestedAt returns a boolean if a field has been set.
func (o *OAuth2LogoutRequest) GetRpInitiated() bool
GetRpInitiated returns the RpInitiated field if non-nil, zero value otherwise.
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.
func (o *OAuth2LogoutRequest) SetRpInitiated(v bool)
SetRpInitiated sets RpInitiated field to given value.
func (o *OAuth2LogoutRequest) HasRpInitiated() bool
HasRpInitiated returns a boolean if a field has been set.
func (o *OAuth2LogoutRequest) GetSid() string
GetSid returns the Sid field if non-nil, zero value otherwise.
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.
func (o *OAuth2LogoutRequest) SetSid(v string)
SetSid sets Sid field to given value.
func (o *OAuth2LogoutRequest) HasSid() bool
HasSid returns a boolean if a field has been set.
func (o *OAuth2LogoutRequest) GetSubject() string
GetSubject returns the Subject field if non-nil, zero value otherwise.
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.
func (o *OAuth2LogoutRequest) SetSubject(v string)
SetSubject sets Subject field to given value.
func (o *OAuth2LogoutRequest) HasSubject() bool
HasSubject returns a boolean if a field has been set.