更新文档内容
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
/*
|
||||
answer
|
||||
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||||
|
||||
answer api
|
||||
|
||||
API version: v0.0.1
|
||||
API version: 1.0.0
|
||||
*/
|
||||
|
||||
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
||||
@@ -19,6 +17,9 @@ var _ MappedNullable = &SchemaAddReportReq{}
|
||||
|
||||
// SchemaAddReportReq struct for SchemaAddReportReq
|
||||
type SchemaAddReportReq struct {
|
||||
CaptchaCode *string `json:"captcha_code,omitempty"`
|
||||
// captcha_id
|
||||
CaptchaId *string `json:"captcha_id,omitempty"`
|
||||
// report content
|
||||
Content *string `json:"content,omitempty"`
|
||||
// object id
|
||||
@@ -46,6 +47,70 @@ func NewSchemaAddReportReqWithDefaults() *SchemaAddReportReq {
|
||||
return &this
|
||||
}
|
||||
|
||||
// GetCaptchaCode returns the CaptchaCode field value if set, zero value otherwise.
|
||||
func (o *SchemaAddReportReq) GetCaptchaCode() string {
|
||||
if o == nil || IsNil(o.CaptchaCode) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.CaptchaCode
|
||||
}
|
||||
|
||||
// GetCaptchaCodeOk returns a tuple with the CaptchaCode field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *SchemaAddReportReq) GetCaptchaCodeOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.CaptchaCode) {
|
||||
return nil, false
|
||||
}
|
||||
return o.CaptchaCode, true
|
||||
}
|
||||
|
||||
// HasCaptchaCode returns a boolean if a field has been set.
|
||||
func (o *SchemaAddReportReq) HasCaptchaCode() bool {
|
||||
if o != nil && !IsNil(o.CaptchaCode) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetCaptchaCode gets a reference to the given string and assigns it to the CaptchaCode field.
|
||||
func (o *SchemaAddReportReq) SetCaptchaCode(v string) {
|
||||
o.CaptchaCode = &v
|
||||
}
|
||||
|
||||
// GetCaptchaId returns the CaptchaId field value if set, zero value otherwise.
|
||||
func (o *SchemaAddReportReq) GetCaptchaId() string {
|
||||
if o == nil || IsNil(o.CaptchaId) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.CaptchaId
|
||||
}
|
||||
|
||||
// GetCaptchaIdOk returns a tuple with the CaptchaId field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *SchemaAddReportReq) GetCaptchaIdOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.CaptchaId) {
|
||||
return nil, false
|
||||
}
|
||||
return o.CaptchaId, true
|
||||
}
|
||||
|
||||
// HasCaptchaId returns a boolean if a field has been set.
|
||||
func (o *SchemaAddReportReq) HasCaptchaId() bool {
|
||||
if o != nil && !IsNil(o.CaptchaId) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetCaptchaId gets a reference to the given string and assigns it to the CaptchaId field.
|
||||
func (o *SchemaAddReportReq) SetCaptchaId(v string) {
|
||||
o.CaptchaId = &v
|
||||
}
|
||||
|
||||
// GetContent returns the Content field value if set, zero value otherwise.
|
||||
func (o *SchemaAddReportReq) GetContent() string {
|
||||
if o == nil || IsNil(o.Content) {
|
||||
@@ -136,6 +201,12 @@ func (o SchemaAddReportReq) MarshalJSON() ([]byte, error) {
|
||||
|
||||
func (o SchemaAddReportReq) ToMap() (map[string]interface{}, error) {
|
||||
toSerialize := map[string]interface{}{}
|
||||
if !IsNil(o.CaptchaCode) {
|
||||
toSerialize["captcha_code"] = o.CaptchaCode
|
||||
}
|
||||
if !IsNil(o.CaptchaId) {
|
||||
toSerialize["captcha_id"] = o.CaptchaId
|
||||
}
|
||||
if !IsNil(o.Content) {
|
||||
toSerialize["content"] = o.Content
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user