Skip to content

Latest commit

 

History

History
129 lines (70 loc) · 4.1 KB

OAuthDeviceCodeFinishChallenge.md

File metadata and controls

129 lines (70 loc) · 4.1 KB

OAuthDeviceCodeFinishChallenge

Properties

Name Type Description Notes
Type ChallengeChoices
FlowInfo Pointer to ContextualFlowInfo [optional]
Component Pointer to string [optional] [default to "ak-provider-oauth2-device-code-finish"]
ResponseErrors Pointer to map[string][]ErrorDetail [optional]

Methods

NewOAuthDeviceCodeFinishChallenge

func NewOAuthDeviceCodeFinishChallenge(type_ ChallengeChoices, ) *OAuthDeviceCodeFinishChallenge

NewOAuthDeviceCodeFinishChallenge instantiates a new OAuthDeviceCodeFinishChallenge 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

NewOAuthDeviceCodeFinishChallengeWithDefaults

func NewOAuthDeviceCodeFinishChallengeWithDefaults() *OAuthDeviceCodeFinishChallenge

NewOAuthDeviceCodeFinishChallengeWithDefaults instantiates a new OAuthDeviceCodeFinishChallenge 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

GetType

func (o *OAuthDeviceCodeFinishChallenge) GetType() ChallengeChoices

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *OAuthDeviceCodeFinishChallenge) GetTypeOk() (*ChallengeChoices, bool)

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

SetType

func (o *OAuthDeviceCodeFinishChallenge) SetType(v ChallengeChoices)

SetType sets Type field to given value.

GetFlowInfo

func (o *OAuthDeviceCodeFinishChallenge) GetFlowInfo() ContextualFlowInfo

GetFlowInfo returns the FlowInfo field if non-nil, zero value otherwise.

GetFlowInfoOk

func (o *OAuthDeviceCodeFinishChallenge) GetFlowInfoOk() (*ContextualFlowInfo, bool)

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

SetFlowInfo

func (o *OAuthDeviceCodeFinishChallenge) SetFlowInfo(v ContextualFlowInfo)

SetFlowInfo sets FlowInfo field to given value.

HasFlowInfo

func (o *OAuthDeviceCodeFinishChallenge) HasFlowInfo() bool

HasFlowInfo returns a boolean if a field has been set.

GetComponent

func (o *OAuthDeviceCodeFinishChallenge) GetComponent() string

GetComponent returns the Component field if non-nil, zero value otherwise.

GetComponentOk

func (o *OAuthDeviceCodeFinishChallenge) GetComponentOk() (*string, bool)

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

SetComponent

func (o *OAuthDeviceCodeFinishChallenge) SetComponent(v string)

SetComponent sets Component field to given value.

HasComponent

func (o *OAuthDeviceCodeFinishChallenge) HasComponent() bool

HasComponent returns a boolean if a field has been set.

GetResponseErrors

func (o *OAuthDeviceCodeFinishChallenge) GetResponseErrors() map[string][]ErrorDetail

GetResponseErrors returns the ResponseErrors field if non-nil, zero value otherwise.

GetResponseErrorsOk

func (o *OAuthDeviceCodeFinishChallenge) GetResponseErrorsOk() (*map[string][]ErrorDetail, bool)

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

SetResponseErrors

func (o *OAuthDeviceCodeFinishChallenge) SetResponseErrors(v map[string][]ErrorDetail)

SetResponseErrors sets ResponseErrors field to given value.

HasResponseErrors

func (o *OAuthDeviceCodeFinishChallenge) HasResponseErrors() bool

HasResponseErrors returns a boolean if a field has been set.

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