更新文档内容

This commit is contained in:
2023-08-22 10:37:28 +08:00
parent c3f06b456f
commit 73222eee28
329 changed files with 25366 additions and 2475 deletions

View File

@@ -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.
@@ -20,8 +18,12 @@ var _ MappedNullable = &SchemaQuestionAddByAnswer{}
// SchemaQuestionAddByAnswer struct for SchemaQuestionAddByAnswer
type SchemaQuestionAddByAnswer struct {
AnswerContent string `json:"answer_content"`
CaptchaCode *string `json:"captcha_code,omitempty"`
// captcha_id
CaptchaId *string `json:"captcha_id,omitempty"`
// content
Content string `json:"content"`
MentionUsernameList []string `json:"mention_username_list,omitempty"`
// tags
Tags []SchemaTagItem `json:"tags"`
// question title
@@ -73,6 +75,70 @@ func (o *SchemaQuestionAddByAnswer) SetAnswerContent(v string) {
o.AnswerContent = v
}
// GetCaptchaCode returns the CaptchaCode field value if set, zero value otherwise.
func (o *SchemaQuestionAddByAnswer) 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 *SchemaQuestionAddByAnswer) 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 *SchemaQuestionAddByAnswer) 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 *SchemaQuestionAddByAnswer) SetCaptchaCode(v string) {
o.CaptchaCode = &v
}
// GetCaptchaId returns the CaptchaId field value if set, zero value otherwise.
func (o *SchemaQuestionAddByAnswer) 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 *SchemaQuestionAddByAnswer) 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 *SchemaQuestionAddByAnswer) 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 *SchemaQuestionAddByAnswer) SetCaptchaId(v string) {
o.CaptchaId = &v
}
// GetContent returns the Content field value
func (o *SchemaQuestionAddByAnswer) GetContent() string {
if o == nil {
@@ -97,6 +163,38 @@ func (o *SchemaQuestionAddByAnswer) SetContent(v string) {
o.Content = v
}
// GetMentionUsernameList returns the MentionUsernameList field value if set, zero value otherwise.
func (o *SchemaQuestionAddByAnswer) GetMentionUsernameList() []string {
if o == nil || IsNil(o.MentionUsernameList) {
var ret []string
return ret
}
return o.MentionUsernameList
}
// GetMentionUsernameListOk returns a tuple with the MentionUsernameList field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SchemaQuestionAddByAnswer) GetMentionUsernameListOk() ([]string, bool) {
if o == nil || IsNil(o.MentionUsernameList) {
return nil, false
}
return o.MentionUsernameList, true
}
// HasMentionUsernameList returns a boolean if a field has been set.
func (o *SchemaQuestionAddByAnswer) HasMentionUsernameList() bool {
if o != nil && !IsNil(o.MentionUsernameList) {
return true
}
return false
}
// SetMentionUsernameList gets a reference to the given []string and assigns it to the MentionUsernameList field.
func (o *SchemaQuestionAddByAnswer) SetMentionUsernameList(v []string) {
o.MentionUsernameList = v
}
// GetTags returns the Tags field value
func (o *SchemaQuestionAddByAnswer) GetTags() []SchemaTagItem {
if o == nil {
@@ -156,7 +254,16 @@ func (o SchemaQuestionAddByAnswer) MarshalJSON() ([]byte, error) {
func (o SchemaQuestionAddByAnswer) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["answer_content"] = o.AnswerContent
if !IsNil(o.CaptchaCode) {
toSerialize["captcha_code"] = o.CaptchaCode
}
if !IsNil(o.CaptchaId) {
toSerialize["captcha_id"] = o.CaptchaId
}
toSerialize["content"] = o.Content
if !IsNil(o.MentionUsernameList) {
toSerialize["mention_username_list"] = o.MentionUsernameList
}
toSerialize["tags"] = o.Tags
toSerialize["title"] = o.Title
return toSerialize, nil