Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.46 KB

IdentityProviderCredentialsClient.md

File metadata and controls

108 lines (59 loc) · 3.46 KB

IdentityProviderCredentialsClient

Properties

Name Type Description Notes
ClientId Pointer to string [optional]
ClientSecret Pointer to string [optional]
PkceRequired Pointer to bool Require Proof Key for Code Exchange (PKCE) for additional verification [optional]

Methods

NewIdentityProviderCredentialsClient

func NewIdentityProviderCredentialsClient() *IdentityProviderCredentialsClient

NewIdentityProviderCredentialsClient instantiates a new IdentityProviderCredentialsClient 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

NewIdentityProviderCredentialsClientWithDefaults

func NewIdentityProviderCredentialsClientWithDefaults() *IdentityProviderCredentialsClient

NewIdentityProviderCredentialsClientWithDefaults instantiates a new IdentityProviderCredentialsClient 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

GetClientId

func (o *IdentityProviderCredentialsClient) GetClientId() string

GetClientId returns the ClientId field if non-nil, zero value otherwise.

GetClientIdOk

func (o *IdentityProviderCredentialsClient) 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.

SetClientId

func (o *IdentityProviderCredentialsClient) SetClientId(v string)

SetClientId sets ClientId field to given value.

HasClientId

func (o *IdentityProviderCredentialsClient) HasClientId() bool

HasClientId returns a boolean if a field has been set.

GetClientSecret

func (o *IdentityProviderCredentialsClient) GetClientSecret() string

GetClientSecret returns the ClientSecret field if non-nil, zero value otherwise.

GetClientSecretOk

func (o *IdentityProviderCredentialsClient) GetClientSecretOk() (*string, bool)

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

SetClientSecret

func (o *IdentityProviderCredentialsClient) SetClientSecret(v string)

SetClientSecret sets ClientSecret field to given value.

HasClientSecret

func (o *IdentityProviderCredentialsClient) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

GetPkceRequired

func (o *IdentityProviderCredentialsClient) GetPkceRequired() bool

GetPkceRequired returns the PkceRequired field if non-nil, zero value otherwise.

GetPkceRequiredOk

func (o *IdentityProviderCredentialsClient) GetPkceRequiredOk() (*bool, bool)

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

SetPkceRequired

func (o *IdentityProviderCredentialsClient) SetPkceRequired(v bool)

SetPkceRequired sets PkceRequired field to given value.

HasPkceRequired

func (o *IdentityProviderCredentialsClient) HasPkceRequired() bool

HasPkceRequired returns a boolean if a field has been set.

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