Files
openapi-go-answer/docs/SchemaExternalLoginBindingUserSendEmailReq.md
2023-08-22 10:37:28 +08:00

3.2 KiB

SchemaExternalLoginBindingUserSendEmailReq

Properties

Name Type Description Notes
BindingKey string
Email string
Must Pointer to bool If must is true, whatever email if exists, try to bind user. If must is false, when email exist, will only be prompted with a warning. [optional]

Methods

NewSchemaExternalLoginBindingUserSendEmailReq

func NewSchemaExternalLoginBindingUserSendEmailReq(bindingKey string, email string, ) *SchemaExternalLoginBindingUserSendEmailReq

NewSchemaExternalLoginBindingUserSendEmailReq instantiates a new SchemaExternalLoginBindingUserSendEmailReq 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

NewSchemaExternalLoginBindingUserSendEmailReqWithDefaults

func NewSchemaExternalLoginBindingUserSendEmailReqWithDefaults() *SchemaExternalLoginBindingUserSendEmailReq

NewSchemaExternalLoginBindingUserSendEmailReqWithDefaults instantiates a new SchemaExternalLoginBindingUserSendEmailReq 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

GetBindingKey

func (o *SchemaExternalLoginBindingUserSendEmailReq) GetBindingKey() string

GetBindingKey returns the BindingKey field if non-nil, zero value otherwise.

GetBindingKeyOk

func (o *SchemaExternalLoginBindingUserSendEmailReq) GetBindingKeyOk() (*string, bool)

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

SetBindingKey

func (o *SchemaExternalLoginBindingUserSendEmailReq) SetBindingKey(v string)

SetBindingKey sets BindingKey field to given value.

GetEmail

func (o *SchemaExternalLoginBindingUserSendEmailReq) GetEmail() string

GetEmail returns the Email field if non-nil, zero value otherwise.

GetEmailOk

func (o *SchemaExternalLoginBindingUserSendEmailReq) GetEmailOk() (*string, bool)

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

SetEmail

func (o *SchemaExternalLoginBindingUserSendEmailReq) SetEmail(v string)

SetEmail sets Email field to given value.

GetMust

func (o *SchemaExternalLoginBindingUserSendEmailReq) GetMust() bool

GetMust returns the Must field if non-nil, zero value otherwise.

GetMustOk

func (o *SchemaExternalLoginBindingUserSendEmailReq) GetMustOk() (*bool, bool)

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

SetMust

func (o *SchemaExternalLoginBindingUserSendEmailReq) SetMust(v bool)

SetMust sets Must field to given value.

HasMust

func (o *SchemaExternalLoginBindingUserSendEmailReq) HasMust() bool

HasMust returns a boolean if a field has been set.

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