1 Star 0 Fork 0

saxon134 / zincsearch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_meta_aggregation_response.go 5.15 KB
一键复制 编辑 原始数据 按行查看 历史
saxon134 提交于 2024-01-31 15:26 . 改包名
/*
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"
)
// MetaAggregationResponse struct for MetaAggregationResponse
type MetaAggregationResponse struct {
// slice or map
Buckets map[string]interface{} `json:"buckets,omitempty"`
// support for auto_date_histogram_aggregation
Interval *string `json:"interval,omitempty"`
Value map[string]interface{} `json:"value,omitempty"`
}
// NewMetaAggregationResponse instantiates a new MetaAggregationResponse 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 NewMetaAggregationResponse() *MetaAggregationResponse {
this := MetaAggregationResponse{}
return &this
}
// NewMetaAggregationResponseWithDefaults instantiates a new MetaAggregationResponse 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 NewMetaAggregationResponseWithDefaults() *MetaAggregationResponse {
this := MetaAggregationResponse{}
return &this
}
// GetBuckets returns the Buckets field value if set, zero value otherwise.
func (o *MetaAggregationResponse) GetBuckets() map[string]interface{} {
if o == nil || o.Buckets == nil {
var ret map[string]interface{}
return ret
}
return o.Buckets
}
// GetBucketsOk returns a tuple with the Buckets field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MetaAggregationResponse) GetBucketsOk() (map[string]interface{}, bool) {
if o == nil || o.Buckets == nil {
return nil, false
}
return o.Buckets, true
}
// HasBuckets returns a boolean if a field has been set.
func (o *MetaAggregationResponse) HasBuckets() bool {
if o != nil && o.Buckets != nil {
return true
}
return false
}
// SetBuckets gets a reference to the given map[string]interface{} and assigns it to the Buckets field.
func (o *MetaAggregationResponse) SetBuckets(v map[string]interface{}) {
o.Buckets = v
}
// GetInterval returns the Interval field value if set, zero value otherwise.
func (o *MetaAggregationResponse) GetInterval() string {
if o == nil || o.Interval == nil {
var ret string
return ret
}
return *o.Interval
}
// GetIntervalOk returns a tuple with the Interval field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MetaAggregationResponse) GetIntervalOk() (*string, bool) {
if o == nil || o.Interval == nil {
return nil, false
}
return o.Interval, true
}
// HasInterval returns a boolean if a field has been set.
func (o *MetaAggregationResponse) HasInterval() bool {
if o != nil && o.Interval != nil {
return true
}
return false
}
// SetInterval gets a reference to the given string and assigns it to the Interval field.
func (o *MetaAggregationResponse) SetInterval(v string) {
o.Interval = &v
}
// GetValue returns the Value field value if set, zero value otherwise.
func (o *MetaAggregationResponse) GetValue() map[string]interface{} {
if o == nil || o.Value == nil {
var ret map[string]interface{}
return ret
}
return o.Value
}
// GetValueOk returns a tuple with the Value field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MetaAggregationResponse) GetValueOk() (map[string]interface{}, bool) {
if o == nil || o.Value == nil {
return nil, false
}
return o.Value, true
}
// HasValue returns a boolean if a field has been set.
func (o *MetaAggregationResponse) HasValue() bool {
if o != nil && o.Value != nil {
return true
}
return false
}
// SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.
func (o *MetaAggregationResponse) SetValue(v map[string]interface{}) {
o.Value = v
}
func (o MetaAggregationResponse) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Buckets != nil {
toSerialize["buckets"] = o.Buckets
}
if o.Interval != nil {
toSerialize["interval"] = o.Interval
}
if o.Value != nil {
toSerialize["value"] = o.Value
}
return json.Marshal(toSerialize)
}
type NullableMetaAggregationResponse struct {
value *MetaAggregationResponse
isSet bool
}
func (v NullableMetaAggregationResponse) Get() *MetaAggregationResponse {
return v.value
}
func (v *NullableMetaAggregationResponse) Set(val *MetaAggregationResponse) {
v.value = val
v.isSet = true
}
func (v NullableMetaAggregationResponse) IsSet() bool {
return v.isSet
}
func (v *NullableMetaAggregationResponse) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableMetaAggregationResponse(val *MetaAggregationResponse) *NullableMetaAggregationResponse {
return &NullableMetaAggregationResponse{value: val, isSet: true}
}
func (v NullableMetaAggregationResponse) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableMetaAggregationResponse) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/saxon134/zincsearch.git
git@gitee.com:saxon134/zincsearch.git
saxon134
zincsearch
zincsearch
fa162905b9da

搜索帮助

344bd9b3 5694891 D2dac590 5694891