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

3.7 KiB

SchemaUserModifyPasswordReq

Properties

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

Methods

NewSchemaUserModifyPasswordReq

func NewSchemaUserModifyPasswordReq(pass string, ) *SchemaUserModifyPasswordReq

NewSchemaUserModifyPasswordReq instantiates a new SchemaUserModifyPasswordReq 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

NewSchemaUserModifyPasswordReqWithDefaults

func NewSchemaUserModifyPasswordReqWithDefaults() *SchemaUserModifyPasswordReq

NewSchemaUserModifyPasswordReqWithDefaults instantiates a new SchemaUserModifyPasswordReq 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 *SchemaUserModifyPasswordReq) GetCaptchaCode() string

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

GetCaptchaCodeOk

func (o *SchemaUserModifyPasswordReq) 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 *SchemaUserModifyPasswordReq) SetCaptchaCode(v string)

SetCaptchaCode sets CaptchaCode field to given value.

HasCaptchaCode

func (o *SchemaUserModifyPasswordReq) HasCaptchaCode() bool

HasCaptchaCode returns a boolean if a field has been set.

GetCaptchaId

func (o *SchemaUserModifyPasswordReq) GetCaptchaId() string

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

GetCaptchaIdOk

func (o *SchemaUserModifyPasswordReq) 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 *SchemaUserModifyPasswordReq) SetCaptchaId(v string)

SetCaptchaId sets CaptchaId field to given value.

HasCaptchaId

func (o *SchemaUserModifyPasswordReq) HasCaptchaId() bool

HasCaptchaId returns a boolean if a field has been set.

GetOldPass

func (o *SchemaUserModifyPasswordReq) GetOldPass() string

GetOldPass returns the OldPass field if non-nil, zero value otherwise.

GetOldPassOk

func (o *SchemaUserModifyPasswordReq) GetOldPassOk() (*string, bool)

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

SetOldPass

func (o *SchemaUserModifyPasswordReq) SetOldPass(v string)

SetOldPass sets OldPass field to given value.

HasOldPass

func (o *SchemaUserModifyPasswordReq) HasOldPass() bool

HasOldPass returns a boolean if a field has been set.

GetPass

func (o *SchemaUserModifyPasswordReq) GetPass() string

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

GetPassOk

func (o *SchemaUserModifyPasswordReq) 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 *SchemaUserModifyPasswordReq) SetPass(v string)

SetPass sets Pass field to given value.

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