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] | |
UseGlobalSettings | Pointer to bool | When enabled, global Email connection settings will be used and connection settings below will be ignored. | [optional] |
Host | Pointer to string | [optional] | |
Port | Pointer to int32 | [optional] | |
Username | Pointer to string | [optional] | |
UseTls | Pointer to bool | [optional] | |
UseSsl | Pointer to bool | [optional] | |
Timeout | Pointer to int32 | [optional] | |
FromAddress | Pointer to string | [optional] | |
TokenExpiry | Pointer to int32 | Time in minutes the token sent is valid. | [optional] |
Subject | Pointer to string | [optional] | |
Template | Pointer to string | [optional] | |
ActivateUserOnSuccess | Pointer to bool | Activate users upon completion of stage. | [optional] |
func NewEmailStage(pk string, name string, component string, verboseName string, verboseNamePlural string, metaModelName string, ) *EmailStage
NewEmailStage instantiates a new EmailStage 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 NewEmailStageWithDefaults() *EmailStage
NewEmailStageWithDefaults instantiates a new EmailStage 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 *EmailStage) GetPk() string
GetPk returns the Pk field if non-nil, zero value otherwise.
func (o *EmailStage) 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 *EmailStage) SetPk(v string)
SetPk sets Pk field to given value.
func (o *EmailStage) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *EmailStage) 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 *EmailStage) SetName(v string)
SetName sets Name field to given value.
func (o *EmailStage) GetComponent() string
GetComponent returns the Component field if non-nil, zero value otherwise.
func (o *EmailStage) 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 *EmailStage) SetComponent(v string)
SetComponent sets Component field to given value.
func (o *EmailStage) GetVerboseName() string
GetVerboseName returns the VerboseName field if non-nil, zero value otherwise.
func (o *EmailStage) 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 *EmailStage) SetVerboseName(v string)
SetVerboseName sets VerboseName field to given value.
func (o *EmailStage) GetVerboseNamePlural() string
GetVerboseNamePlural returns the VerboseNamePlural field if non-nil, zero value otherwise.
func (o *EmailStage) 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 *EmailStage) SetVerboseNamePlural(v string)
SetVerboseNamePlural sets VerboseNamePlural field to given value.
func (o *EmailStage) GetMetaModelName() string
GetMetaModelName returns the MetaModelName field if non-nil, zero value otherwise.
func (o *EmailStage) 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 *EmailStage) SetMetaModelName(v string)
SetMetaModelName sets MetaModelName field to given value.
func (o *EmailStage) GetFlowSet() []FlowSet
GetFlowSet returns the FlowSet field if non-nil, zero value otherwise.
func (o *EmailStage) 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 *EmailStage) SetFlowSet(v []FlowSet)
SetFlowSet sets FlowSet field to given value.
func (o *EmailStage) HasFlowSet() bool
HasFlowSet returns a boolean if a field has been set.
func (o *EmailStage) GetUseGlobalSettings() bool
GetUseGlobalSettings returns the UseGlobalSettings field if non-nil, zero value otherwise.
func (o *EmailStage) GetUseGlobalSettingsOk() (*bool, bool)
GetUseGlobalSettingsOk returns a tuple with the UseGlobalSettings field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetUseGlobalSettings(v bool)
SetUseGlobalSettings sets UseGlobalSettings field to given value.
func (o *EmailStage) HasUseGlobalSettings() bool
HasUseGlobalSettings returns a boolean if a field has been set.
func (o *EmailStage) GetHost() string
GetHost returns the Host field if non-nil, zero value otherwise.
func (o *EmailStage) GetHostOk() (*string, bool)
GetHostOk returns a tuple with the Host field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetHost(v string)
SetHost sets Host field to given value.
func (o *EmailStage) HasHost() bool
HasHost returns a boolean if a field has been set.
func (o *EmailStage) GetPort() int32
GetPort returns the Port field if non-nil, zero value otherwise.
func (o *EmailStage) GetPortOk() (*int32, bool)
GetPortOk returns a tuple with the Port field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetPort(v int32)
SetPort sets Port field to given value.
func (o *EmailStage) HasPort() bool
HasPort returns a boolean if a field has been set.
func (o *EmailStage) GetUsername() string
GetUsername returns the Username field if non-nil, zero value otherwise.
func (o *EmailStage) GetUsernameOk() (*string, bool)
GetUsernameOk returns a tuple with the Username field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetUsername(v string)
SetUsername sets Username field to given value.
func (o *EmailStage) HasUsername() bool
HasUsername returns a boolean if a field has been set.
func (o *EmailStage) GetUseTls() bool
GetUseTls returns the UseTls field if non-nil, zero value otherwise.
func (o *EmailStage) GetUseTlsOk() (*bool, bool)
GetUseTlsOk returns a tuple with the UseTls field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetUseTls(v bool)
SetUseTls sets UseTls field to given value.
func (o *EmailStage) HasUseTls() bool
HasUseTls returns a boolean if a field has been set.
func (o *EmailStage) GetUseSsl() bool
GetUseSsl returns the UseSsl field if non-nil, zero value otherwise.
func (o *EmailStage) GetUseSslOk() (*bool, bool)
GetUseSslOk returns a tuple with the UseSsl field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetUseSsl(v bool)
SetUseSsl sets UseSsl field to given value.
func (o *EmailStage) HasUseSsl() bool
HasUseSsl returns a boolean if a field has been set.
func (o *EmailStage) GetTimeout() int32
GetTimeout returns the Timeout field if non-nil, zero value otherwise.
func (o *EmailStage) GetTimeoutOk() (*int32, bool)
GetTimeoutOk returns a tuple with the Timeout field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetTimeout(v int32)
SetTimeout sets Timeout field to given value.
func (o *EmailStage) HasTimeout() bool
HasTimeout returns a boolean if a field has been set.
func (o *EmailStage) GetFromAddress() string
GetFromAddress returns the FromAddress field if non-nil, zero value otherwise.
func (o *EmailStage) GetFromAddressOk() (*string, bool)
GetFromAddressOk returns a tuple with the FromAddress field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetFromAddress(v string)
SetFromAddress sets FromAddress field to given value.
func (o *EmailStage) HasFromAddress() bool
HasFromAddress returns a boolean if a field has been set.
func (o *EmailStage) GetTokenExpiry() int32
GetTokenExpiry returns the TokenExpiry field if non-nil, zero value otherwise.
func (o *EmailStage) GetTokenExpiryOk() (*int32, bool)
GetTokenExpiryOk returns a tuple with the TokenExpiry field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetTokenExpiry(v int32)
SetTokenExpiry sets TokenExpiry field to given value.
func (o *EmailStage) HasTokenExpiry() bool
HasTokenExpiry returns a boolean if a field has been set.
func (o *EmailStage) GetSubject() string
GetSubject returns the Subject field if non-nil, zero value otherwise.
func (o *EmailStage) GetSubjectOk() (*string, bool)
GetSubjectOk returns a tuple with the Subject field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetSubject(v string)
SetSubject sets Subject field to given value.
func (o *EmailStage) HasSubject() bool
HasSubject returns a boolean if a field has been set.
func (o *EmailStage) GetTemplate() string
GetTemplate returns the Template field if non-nil, zero value otherwise.
func (o *EmailStage) GetTemplateOk() (*string, bool)
GetTemplateOk returns a tuple with the Template field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetTemplate(v string)
SetTemplate sets Template field to given value.
func (o *EmailStage) HasTemplate() bool
HasTemplate returns a boolean if a field has been set.
func (o *EmailStage) GetActivateUserOnSuccess() bool
GetActivateUserOnSuccess returns the ActivateUserOnSuccess field if non-nil, zero value otherwise.
func (o *EmailStage) GetActivateUserOnSuccessOk() (*bool, bool)
GetActivateUserOnSuccessOk returns a tuple with the ActivateUserOnSuccess field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EmailStage) SetActivateUserOnSuccess(v bool)
SetActivateUserOnSuccess sets ActivateUserOnSuccess field to given value.
func (o *EmailStage) HasActivateUserOnSuccess() bool
HasActivateUserOnSuccess returns a boolean if a field has been set.