更新文档内容

This commit is contained in:
2023-09-26 16:20:01 +08:00
parent 73222eee28
commit d72897f080
415 changed files with 15785 additions and 17558 deletions

View File

@@ -0,0 +1,124 @@
# SchemaUserEmailLoginReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**CaptchaCode** | Pointer to **string** | | [optional]
**CaptchaId** | Pointer to **string** | | [optional]
**EMail** | **string** | |
**Pass** | **string** | |
## Methods
### NewSchemaUserEmailLoginReq
`func NewSchemaUserEmailLoginReq(eMail string, pass string, ) *SchemaUserEmailLoginReq`
NewSchemaUserEmailLoginReq instantiates a new SchemaUserEmailLoginReq 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
### NewSchemaUserEmailLoginReqWithDefaults
`func NewSchemaUserEmailLoginReqWithDefaults() *SchemaUserEmailLoginReq`
NewSchemaUserEmailLoginReqWithDefaults instantiates a new SchemaUserEmailLoginReq 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 *SchemaUserEmailLoginReq) GetCaptchaCode() string`
GetCaptchaCode returns the CaptchaCode field if non-nil, zero value otherwise.
### GetCaptchaCodeOk
`func (o *SchemaUserEmailLoginReq) 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 *SchemaUserEmailLoginReq) SetCaptchaCode(v string)`
SetCaptchaCode sets CaptchaCode field to given value.
### HasCaptchaCode
`func (o *SchemaUserEmailLoginReq) HasCaptchaCode() bool`
HasCaptchaCode returns a boolean if a field has been set.
### GetCaptchaId
`func (o *SchemaUserEmailLoginReq) GetCaptchaId() string`
GetCaptchaId returns the CaptchaId field if non-nil, zero value otherwise.
### GetCaptchaIdOk
`func (o *SchemaUserEmailLoginReq) 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 *SchemaUserEmailLoginReq) SetCaptchaId(v string)`
SetCaptchaId sets CaptchaId field to given value.
### HasCaptchaId
`func (o *SchemaUserEmailLoginReq) HasCaptchaId() bool`
HasCaptchaId returns a boolean if a field has been set.
### GetEMail
`func (o *SchemaUserEmailLoginReq) GetEMail() string`
GetEMail returns the EMail field if non-nil, zero value otherwise.
### GetEMailOk
`func (o *SchemaUserEmailLoginReq) 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 *SchemaUserEmailLoginReq) SetEMail(v string)`
SetEMail sets EMail field to given value.
### GetPass
`func (o *SchemaUserEmailLoginReq) GetPass() string`
GetPass returns the Pass field if non-nil, zero value otherwise.
### GetPassOk
`func (o *SchemaUserEmailLoginReq) 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 *SchemaUserEmailLoginReq) SetPass(v string)`
SetPass sets Pass field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)