1 Star 0 Fork 0

saxon134 / zincsearch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_meta_http_retries_response.go 3.89 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"
)
// MetaHttpRetriesResponse struct for MetaHttpRetriesResponse
type MetaHttpRetriesResponse struct {
Bulk *int32 `json:"bulk,omitempty"`
Search *int32 `json:"search,omitempty"`
}
// NewMetaHttpRetriesResponse instantiates a new MetaHttpRetriesResponse 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 NewMetaHttpRetriesResponse() *MetaHttpRetriesResponse {
this := MetaHttpRetriesResponse{}
return &this
}
// NewMetaHttpRetriesResponseWithDefaults instantiates a new MetaHttpRetriesResponse 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 NewMetaHttpRetriesResponseWithDefaults() *MetaHttpRetriesResponse {
this := MetaHttpRetriesResponse{}
return &this
}
// GetBulk returns the Bulk field value if set, zero value otherwise.
func (o *MetaHttpRetriesResponse) GetBulk() int32 {
if o == nil || o.Bulk == nil {
var ret int32
return ret
}
return *o.Bulk
}
// GetBulkOk returns a tuple with the Bulk field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MetaHttpRetriesResponse) GetBulkOk() (*int32, bool) {
if o == nil || o.Bulk == nil {
return nil, false
}
return o.Bulk, true
}
// HasBulk returns a boolean if a field has been set.
func (o *MetaHttpRetriesResponse) HasBulk() bool {
if o != nil && o.Bulk != nil {
return true
}
return false
}
// SetBulk gets a reference to the given int32 and assigns it to the Bulk field.
func (o *MetaHttpRetriesResponse) SetBulk(v int32) {
o.Bulk = &v
}
// GetSearch returns the Search field value if set, zero value otherwise.
func (o *MetaHttpRetriesResponse) GetSearch() int32 {
if o == nil || o.Search == nil {
var ret int32
return ret
}
return *o.Search
}
// GetSearchOk returns a tuple with the Search field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MetaHttpRetriesResponse) GetSearchOk() (*int32, bool) {
if o == nil || o.Search == nil {
return nil, false
}
return o.Search, true
}
// HasSearch returns a boolean if a field has been set.
func (o *MetaHttpRetriesResponse) HasSearch() bool {
if o != nil && o.Search != nil {
return true
}
return false
}
// SetSearch gets a reference to the given int32 and assigns it to the Search field.
func (o *MetaHttpRetriesResponse) SetSearch(v int32) {
o.Search = &v
}
func (o MetaHttpRetriesResponse) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Bulk != nil {
toSerialize["bulk"] = o.Bulk
}
if o.Search != nil {
toSerialize["search"] = o.Search
}
return json.Marshal(toSerialize)
}
type NullableMetaHttpRetriesResponse struct {
value *MetaHttpRetriesResponse
isSet bool
}
func (v NullableMetaHttpRetriesResponse) Get() *MetaHttpRetriesResponse {
return v.value
}
func (v *NullableMetaHttpRetriesResponse) Set(val *MetaHttpRetriesResponse) {
v.value = val
v.isSet = true
}
func (v NullableMetaHttpRetriesResponse) IsSet() bool {
return v.isSet
}
func (v *NullableMetaHttpRetriesResponse) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableMetaHttpRetriesResponse(val *MetaHttpRetriesResponse) *NullableMetaHttpRetriesResponse {
return &NullableMetaHttpRetriesResponse{value: val, isSet: true}
}
func (v NullableMetaHttpRetriesResponse) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableMetaHttpRetriesResponse) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
1
https://gitee.com/saxon134/zincsearch.git
git@gitee.com:saxon134/zincsearch.git
saxon134
zincsearch
zincsearch
237b079b4ed8

搜索帮助