Name | Type | Description | Notes |
---|---|---|---|
ClientId | string | The client ID you received when you first created the application | [readonly] |
Mode | ModeResponse | ||
Provider | ProviderResponse | ||
Scopes | []ScopesResponse | One or more scope values indicating which parts of the user's account you wish to access. Note, slight deviation from the OAuth 2.1 spec in that the param is scopes (plural) is used vs scope (singular) | [readonly] |
func NewIntrospectResponse(clientId string, mode ModeResponse, provider ProviderResponse, scopes []ScopesResponse, ) *IntrospectResponse
NewIntrospectResponse instantiates a new IntrospectResponse 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 NewIntrospectResponseWithDefaults() *IntrospectResponse
NewIntrospectResponseWithDefaults instantiates a new IntrospectResponse 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 *IntrospectResponse) GetClientId() string
GetClientId returns the ClientId field if non-nil, zero value otherwise.
func (o *IntrospectResponse) GetClientIdOk() (*string, bool)
GetClientIdOk returns a tuple with the ClientId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IntrospectResponse) SetClientId(v string)
SetClientId sets ClientId field to given value.
func (o *IntrospectResponse) GetMode() ModeResponse
GetMode returns the Mode field if non-nil, zero value otherwise.
func (o *IntrospectResponse) GetModeOk() (*ModeResponse, bool)
GetModeOk returns a tuple with the Mode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IntrospectResponse) SetMode(v ModeResponse)
SetMode sets Mode field to given value.
func (o *IntrospectResponse) GetProvider() ProviderResponse
GetProvider returns the Provider field if non-nil, zero value otherwise.
func (o *IntrospectResponse) GetProviderOk() (*ProviderResponse, bool)
GetProviderOk returns a tuple with the Provider field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IntrospectResponse) SetProvider(v ProviderResponse)
SetProvider sets Provider field to given value.
func (o *IntrospectResponse) GetScopes() []ScopesResponse
GetScopes returns the Scopes field if non-nil, zero value otherwise.
func (o *IntrospectResponse) GetScopesOk() (*[]ScopesResponse, bool)
GetScopesOk returns a tuple with the Scopes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IntrospectResponse) SetScopes(v []ScopesResponse)
SetScopes sets Scopes field to given value.