Name | Type | Description | Notes |
---|---|---|---|
Pk | string | [readonly] | |
Name | string | ||
Component | string | Get object type so that we know how to edit the object | [readonly] |
VerboseName | string | Return object's verbose_name | [readonly] |
VerboseNamePlural | string | Return object's plural verbose_name | [readonly] |
MetaModelName | string | Return internal model name | [readonly] |
FlowSet | Pointer to []FlowSet | [optional] | |
Backends | []BackendsEnum | Selection of backends to test the password against. | |
ConfigureFlow | Pointer to NullableString | Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage. | [optional] |
FailedAttemptsBeforeCancel | Pointer to int32 | How many attempts a user has before the flow is canceled. To lock the user out, use a reputation policy and a user_write stage. | [optional] |
AllowShowPassword | Pointer to bool | When enabled, provides a 'show password' button with the password input field. | [optional] |
func NewPasswordStage(pk string, name string, component string, verboseName string, verboseNamePlural string, metaModelName string, backends []BackendsEnum, ) *PasswordStage
NewPasswordStage instantiates a new PasswordStage 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 NewPasswordStageWithDefaults() *PasswordStage
NewPasswordStageWithDefaults instantiates a new PasswordStage 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 *PasswordStage) GetPk() string
GetPk returns the Pk field if non-nil, zero value otherwise.
func (o *PasswordStage) GetPkOk() (*string, bool)
GetPkOk returns a tuple with the Pk field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetPk(v string)
SetPk sets Pk field to given value.
func (o *PasswordStage) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *PasswordStage) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetName(v string)
SetName sets Name field to given value.
func (o *PasswordStage) GetComponent() string
GetComponent returns the Component field if non-nil, zero value otherwise.
func (o *PasswordStage) 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.
func (o *PasswordStage) SetComponent(v string)
SetComponent sets Component field to given value.
func (o *PasswordStage) GetVerboseName() string
GetVerboseName returns the VerboseName field if non-nil, zero value otherwise.
func (o *PasswordStage) GetVerboseNameOk() (*string, bool)
GetVerboseNameOk returns a tuple with the VerboseName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetVerboseName(v string)
SetVerboseName sets VerboseName field to given value.
func (o *PasswordStage) GetVerboseNamePlural() string
GetVerboseNamePlural returns the VerboseNamePlural field if non-nil, zero value otherwise.
func (o *PasswordStage) GetVerboseNamePluralOk() (*string, bool)
GetVerboseNamePluralOk returns a tuple with the VerboseNamePlural field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetVerboseNamePlural(v string)
SetVerboseNamePlural sets VerboseNamePlural field to given value.
func (o *PasswordStage) GetMetaModelName() string
GetMetaModelName returns the MetaModelName field if non-nil, zero value otherwise.
func (o *PasswordStage) GetMetaModelNameOk() (*string, bool)
GetMetaModelNameOk returns a tuple with the MetaModelName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetMetaModelName(v string)
SetMetaModelName sets MetaModelName field to given value.
func (o *PasswordStage) GetFlowSet() []FlowSet
GetFlowSet returns the FlowSet field if non-nil, zero value otherwise.
func (o *PasswordStage) GetFlowSetOk() (*[]FlowSet, bool)
GetFlowSetOk returns a tuple with the FlowSet field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetFlowSet(v []FlowSet)
SetFlowSet sets FlowSet field to given value.
func (o *PasswordStage) HasFlowSet() bool
HasFlowSet returns a boolean if a field has been set.
func (o *PasswordStage) GetBackends() []BackendsEnum
GetBackends returns the Backends field if non-nil, zero value otherwise.
func (o *PasswordStage) GetBackendsOk() (*[]BackendsEnum, bool)
GetBackendsOk returns a tuple with the Backends field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetBackends(v []BackendsEnum)
SetBackends sets Backends field to given value.
func (o *PasswordStage) GetConfigureFlow() string
GetConfigureFlow returns the ConfigureFlow field if non-nil, zero value otherwise.
func (o *PasswordStage) GetConfigureFlowOk() (*string, bool)
GetConfigureFlowOk returns a tuple with the ConfigureFlow field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetConfigureFlow(v string)
SetConfigureFlow sets ConfigureFlow field to given value.
func (o *PasswordStage) HasConfigureFlow() bool
HasConfigureFlow returns a boolean if a field has been set.
func (o *PasswordStage) SetConfigureFlowNil(b bool)
SetConfigureFlowNil sets the value for ConfigureFlow to be an explicit nil
func (o *PasswordStage) UnsetConfigureFlow()
UnsetConfigureFlow ensures that no value is present for ConfigureFlow, not even an explicit nil
func (o *PasswordStage) GetFailedAttemptsBeforeCancel() int32
GetFailedAttemptsBeforeCancel returns the FailedAttemptsBeforeCancel field if non-nil, zero value otherwise.
func (o *PasswordStage) GetFailedAttemptsBeforeCancelOk() (*int32, bool)
GetFailedAttemptsBeforeCancelOk returns a tuple with the FailedAttemptsBeforeCancel field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetFailedAttemptsBeforeCancel(v int32)
SetFailedAttemptsBeforeCancel sets FailedAttemptsBeforeCancel field to given value.
func (o *PasswordStage) HasFailedAttemptsBeforeCancel() bool
HasFailedAttemptsBeforeCancel returns a boolean if a field has been set.
func (o *PasswordStage) GetAllowShowPassword() bool
GetAllowShowPassword returns the AllowShowPassword field if non-nil, zero value otherwise.
func (o *PasswordStage) GetAllowShowPasswordOk() (*bool, bool)
GetAllowShowPasswordOk returns a tuple with the AllowShowPassword field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PasswordStage) SetAllowShowPassword(v bool)
SetAllowShowPassword sets AllowShowPassword field to given value.
func (o *PasswordStage) HasAllowShowPassword() bool
HasAllowShowPassword returns a boolean if a field has been set.