1 Star 0 Fork 0

saxon134/zincsearch

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
model_meta_http_response_template.go 4.04 KB
一键复制 编辑 原始数据 按行查看 历史
saxon134 提交于 2024-01-31 15:26 +08:00 . 改包名
/*
Zinc Search engine API
Zinc Search engine API documents https://docs.zincsearch.com
API version: 0.3.3
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package zincsearch
import (
"encoding/json"
)
// MetaHTTPResponseTemplate struct for MetaHTTPResponseTemplate
type MetaHTTPResponseTemplate struct {
Message *string `json:"message,omitempty"`
Template *string `json:"template,omitempty"`
}
// NewMetaHTTPResponseTemplate instantiates a new MetaHTTPResponseTemplate 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
func NewMetaHTTPResponseTemplate() *MetaHTTPResponseTemplate {
this := MetaHTTPResponseTemplate{}
return &this
}
// NewMetaHTTPResponseTemplateWithDefaults instantiates a new MetaHTTPResponseTemplate 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
func NewMetaHTTPResponseTemplateWithDefaults() *MetaHTTPResponseTemplate {
this := MetaHTTPResponseTemplate{}
return &this
}
// GetMessage returns the Message field value if set, zero value otherwise.
func (o *MetaHTTPResponseTemplate) GetMessage() string {
if o == nil || o.Message == nil {
var ret string
return ret
}
return *o.Message
}
// GetMessageOk returns a tuple with the Message field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MetaHTTPResponseTemplate) GetMessageOk() (*string, bool) {
if o == nil || o.Message == nil {
return nil, false
}
return o.Message, true
}
// HasMessage returns a boolean if a field has been set.
func (o *MetaHTTPResponseTemplate) HasMessage() bool {
if o != nil && o.Message != nil {
return true
}
return false
}
// SetMessage gets a reference to the given string and assigns it to the Message field.
func (o *MetaHTTPResponseTemplate) SetMessage(v string) {
o.Message = &v
}
// GetTemplate returns the Template field value if set, zero value otherwise.
func (o *MetaHTTPResponseTemplate) GetTemplate() string {
if o == nil || o.Template == nil {
var ret string
return ret
}
return *o.Template
}
// GetTemplateOk returns a tuple with the Template field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MetaHTTPResponseTemplate) GetTemplateOk() (*string, bool) {
if o == nil || o.Template == nil {
return nil, false
}
return o.Template, true
}
// HasTemplate returns a boolean if a field has been set.
func (o *MetaHTTPResponseTemplate) HasTemplate() bool {
if o != nil && o.Template != nil {
return true
}
return false
}
// SetTemplate gets a reference to the given string and assigns it to the Template field.
func (o *MetaHTTPResponseTemplate) SetTemplate(v string) {
o.Template = &v
}
func (o MetaHTTPResponseTemplate) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Message != nil {
toSerialize["message"] = o.Message
}
if o.Template != nil {
toSerialize["template"] = o.Template
}
return json.Marshal(toSerialize)
}
type NullableMetaHTTPResponseTemplate struct {
value *MetaHTTPResponseTemplate
isSet bool
}
func (v NullableMetaHTTPResponseTemplate) Get() *MetaHTTPResponseTemplate {
return v.value
}
func (v *NullableMetaHTTPResponseTemplate) Set(val *MetaHTTPResponseTemplate) {
v.value = val
v.isSet = true
}
func (v NullableMetaHTTPResponseTemplate) IsSet() bool {
return v.isSet
}
func (v *NullableMetaHTTPResponseTemplate) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableMetaHTTPResponseTemplate(val *MetaHTTPResponseTemplate) *NullableMetaHTTPResponseTemplate {
return &NullableMetaHTTPResponseTemplate{value: val, isSet: true}
}
func (v NullableMetaHTTPResponseTemplate) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableMetaHTTPResponseTemplate) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/saxon134/zincsearch.git
git@gitee.com:saxon134/zincsearch.git
saxon134
zincsearch
zincsearch
fa162905b9da

搜索帮助