-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmodel_meta_template_template.go
151 lines (122 loc) · 4.02 KB
/
model_meta_template_template.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
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 client
import (
"encoding/json"
)
// MetaTemplateTemplate struct for MetaTemplateTemplate
type MetaTemplateTemplate struct {
Mappings *MetaMappings `json:"mappings,omitempty"`
Settings *MetaIndexSettings `json:"settings,omitempty"`
}
// NewMetaTemplateTemplate instantiates a new MetaTemplateTemplate 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 NewMetaTemplateTemplate() *MetaTemplateTemplate {
this := MetaTemplateTemplate{}
return &this
}
// NewMetaTemplateTemplateWithDefaults instantiates a new MetaTemplateTemplate 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 NewMetaTemplateTemplateWithDefaults() *MetaTemplateTemplate {
this := MetaTemplateTemplate{}
return &this
}
// GetMappings returns the Mappings field value if set, zero value otherwise.
func (o *MetaTemplateTemplate) GetMappings() MetaMappings {
if o == nil || o.Mappings == nil {
var ret MetaMappings
return ret
}
return *o.Mappings
}
// GetMappingsOk returns a tuple with the Mappings field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MetaTemplateTemplate) GetMappingsOk() (*MetaMappings, bool) {
if o == nil || o.Mappings == nil {
return nil, false
}
return o.Mappings, true
}
// HasMappings returns a boolean if a field has been set.
func (o *MetaTemplateTemplate) HasMappings() bool {
if o != nil && o.Mappings != nil {
return true
}
return false
}
// SetMappings gets a reference to the given MetaMappings and assigns it to the Mappings field.
func (o *MetaTemplateTemplate) SetMappings(v MetaMappings) {
o.Mappings = &v
}
// GetSettings returns the Settings field value if set, zero value otherwise.
func (o *MetaTemplateTemplate) GetSettings() MetaIndexSettings {
if o == nil || o.Settings == nil {
var ret MetaIndexSettings
return ret
}
return *o.Settings
}
// GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MetaTemplateTemplate) GetSettingsOk() (*MetaIndexSettings, bool) {
if o == nil || o.Settings == nil {
return nil, false
}
return o.Settings, true
}
// HasSettings returns a boolean if a field has been set.
func (o *MetaTemplateTemplate) HasSettings() bool {
if o != nil && o.Settings != nil {
return true
}
return false
}
// SetSettings gets a reference to the given MetaIndexSettings and assigns it to the Settings field.
func (o *MetaTemplateTemplate) SetSettings(v MetaIndexSettings) {
o.Settings = &v
}
func (o MetaTemplateTemplate) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Mappings != nil {
toSerialize["mappings"] = o.Mappings
}
if o.Settings != nil {
toSerialize["settings"] = o.Settings
}
return json.Marshal(toSerialize)
}
type NullableMetaTemplateTemplate struct {
value *MetaTemplateTemplate
isSet bool
}
func (v NullableMetaTemplateTemplate) Get() *MetaTemplateTemplate {
return v.value
}
func (v *NullableMetaTemplateTemplate) Set(val *MetaTemplateTemplate) {
v.value = val
v.isSet = true
}
func (v NullableMetaTemplateTemplate) IsSet() bool {
return v.isSet
}
func (v *NullableMetaTemplateTemplate) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableMetaTemplateTemplate(val *MetaTemplateTemplate) *NullableMetaTemplateTemplate {
return &NullableMetaTemplateTemplate{value: val, isSet: true}
}
func (v NullableMetaTemplateTemplate) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableMetaTemplateTemplate) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}