Name | Type | Description | Notes |
---|---|---|---|
Ticket | string | The ticket which should be deleted on a call of Authlete's `/backchannel/authentication/fail` API. This request parameter is not mandatory but optional. If this request parameter is given and the ticket belongs to the service, the specified ticket is deleted from the database. Giving this parameter is recommended to clean up the storage area for the service. | |
Reason | string | The reason of the failure of the backchannel authentication request. This request parameter is not mandatory but optional. However, giving this parameter is recommended. If omitted, `SERVER_ERROR` is used as a reason. | |
ErrorDescription | Pointer to string | The description of the error. This corresponds to the `error_description` property in the response to the client. | [optional] |
ErrorUri | Pointer to string | The URI of a document which describes the error in detail. If this optional request parameter is given, its value is used as the value of the `error_uri` property. | [optional] |
func NewBackchannelAuthenticationFailRequest(ticket string, reason string, ) *BackchannelAuthenticationFailRequest
NewBackchannelAuthenticationFailRequest instantiates a new BackchannelAuthenticationFailRequest 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 NewBackchannelAuthenticationFailRequestWithDefaults() *BackchannelAuthenticationFailRequest
NewBackchannelAuthenticationFailRequestWithDefaults instantiates a new BackchannelAuthenticationFailRequest 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 *BackchannelAuthenticationFailRequest) GetTicket() string
GetTicket returns the Ticket field if non-nil, zero value otherwise.
func (o *BackchannelAuthenticationFailRequest) GetTicketOk() (*string, bool)
GetTicketOk returns a tuple with the Ticket field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BackchannelAuthenticationFailRequest) SetTicket(v string)
SetTicket sets Ticket field to given value.
func (o *BackchannelAuthenticationFailRequest) GetReason() string
GetReason returns the Reason field if non-nil, zero value otherwise.
func (o *BackchannelAuthenticationFailRequest) GetReasonOk() (*string, bool)
GetReasonOk returns a tuple with the Reason field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BackchannelAuthenticationFailRequest) SetReason(v string)
SetReason sets Reason field to given value.
func (o *BackchannelAuthenticationFailRequest) GetErrorDescription() string
GetErrorDescription returns the ErrorDescription field if non-nil, zero value otherwise.
func (o *BackchannelAuthenticationFailRequest) GetErrorDescriptionOk() (*string, bool)
GetErrorDescriptionOk returns a tuple with the ErrorDescription field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BackchannelAuthenticationFailRequest) SetErrorDescription(v string)
SetErrorDescription sets ErrorDescription field to given value.
func (o *BackchannelAuthenticationFailRequest) HasErrorDescription() bool
HasErrorDescription returns a boolean if a field has been set.
func (o *BackchannelAuthenticationFailRequest) GetErrorUri() string
GetErrorUri returns the ErrorUri field if non-nil, zero value otherwise.
func (o *BackchannelAuthenticationFailRequest) GetErrorUriOk() (*string, bool)
GetErrorUriOk returns a tuple with the ErrorUri field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BackchannelAuthenticationFailRequest) SetErrorUri(v string)
SetErrorUri sets ErrorUri field to given value.
func (o *BackchannelAuthenticationFailRequest) HasErrorUri() bool
HasErrorUri returns a boolean if a field has been set.