Files
openapi-go-answer/docs/SchemaUserRegisterReq.md
2023-09-26 16:20:01 +08:00

3.9 KiB

SchemaUserRegisterReq

Properties

Name Type Description Notes
CaptchaCode Pointer to string [optional]
CaptchaId Pointer to string [optional]
EMail string
Name string
Pass string

Methods

NewSchemaUserRegisterReq

func NewSchemaUserRegisterReq(eMail string, name string, pass string, ) *SchemaUserRegisterReq

NewSchemaUserRegisterReq instantiates a new SchemaUserRegisterReq 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

NewSchemaUserRegisterReqWithDefaults

func NewSchemaUserRegisterReqWithDefaults() *SchemaUserRegisterReq

NewSchemaUserRegisterReqWithDefaults instantiates a new SchemaUserRegisterReq 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

GetCaptchaCode

func (o *SchemaUserRegisterReq) GetCaptchaCode() string

GetCaptchaCode returns the CaptchaCode field if non-nil, zero value otherwise.

GetCaptchaCodeOk

func (o *SchemaUserRegisterReq) GetCaptchaCodeOk() (*string, bool)

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

SetCaptchaCode

func (o *SchemaUserRegisterReq) SetCaptchaCode(v string)

SetCaptchaCode sets CaptchaCode field to given value.

HasCaptchaCode

func (o *SchemaUserRegisterReq) HasCaptchaCode() bool

HasCaptchaCode returns a boolean if a field has been set.

GetCaptchaId

func (o *SchemaUserRegisterReq) GetCaptchaId() string

GetCaptchaId returns the CaptchaId field if non-nil, zero value otherwise.

GetCaptchaIdOk

func (o *SchemaUserRegisterReq) GetCaptchaIdOk() (*string, bool)

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

SetCaptchaId

func (o *SchemaUserRegisterReq) SetCaptchaId(v string)

SetCaptchaId sets CaptchaId field to given value.

HasCaptchaId

func (o *SchemaUserRegisterReq) HasCaptchaId() bool

HasCaptchaId returns a boolean if a field has been set.

GetEMail

func (o *SchemaUserRegisterReq) GetEMail() string

GetEMail returns the EMail field if non-nil, zero value otherwise.

GetEMailOk

func (o *SchemaUserRegisterReq) 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 *SchemaUserRegisterReq) SetEMail(v string)

SetEMail sets EMail field to given value.

GetName

func (o *SchemaUserRegisterReq) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

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

SetName

func (o *SchemaUserRegisterReq) SetName(v string)

SetName sets Name field to given value.

GetPass

func (o *SchemaUserRegisterReq) GetPass() string

GetPass returns the Pass field if non-nil, zero value otherwise.

GetPassOk

func (o *SchemaUserRegisterReq) GetPassOk() (*string, bool)

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

SetPass

func (o *SchemaUserRegisterReq) SetPass(v string)

SetPass sets Pass field to given value.

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