influx-cli/api/model_template_summary_bucket_all_of.gen.go

237 lines
6.4 KiB
Go

/*
* Subset of Influx API covered by Influx CLI
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* API version: 2.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package api
import (
"encoding/json"
)
// TemplateSummaryBucketAllOf struct for TemplateSummaryBucketAllOf
type TemplateSummaryBucketAllOf struct {
Id uint64 `json:"id" yaml:"id"`
Name string `json:"name" yaml:"name"`
Description *string `json:"description,omitempty" yaml:"description,omitempty"`
RetentionPeriod int64 `json:"retentionPeriod" yaml:"retentionPeriod"`
SchemaType *SchemaType `json:"schemaType,omitempty" yaml:"schemaType,omitempty"`
}
// NewTemplateSummaryBucketAllOf instantiates a new TemplateSummaryBucketAllOf 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 NewTemplateSummaryBucketAllOf(id uint64, name string, retentionPeriod int64) *TemplateSummaryBucketAllOf {
this := TemplateSummaryBucketAllOf{}
this.Id = id
this.Name = name
this.RetentionPeriod = retentionPeriod
return &this
}
// NewTemplateSummaryBucketAllOfWithDefaults instantiates a new TemplateSummaryBucketAllOf 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 NewTemplateSummaryBucketAllOfWithDefaults() *TemplateSummaryBucketAllOf {
this := TemplateSummaryBucketAllOf{}
return &this
}
// GetId returns the Id field value
func (o *TemplateSummaryBucketAllOf) GetId() uint64 {
if o == nil {
var ret uint64
return ret
}
return o.Id
}
// GetIdOk returns a tuple with the Id field value
// and a boolean to check if the value has been set.
func (o *TemplateSummaryBucketAllOf) GetIdOk() (*uint64, bool) {
if o == nil {
return nil, false
}
return &o.Id, true
}
// SetId sets field value
func (o *TemplateSummaryBucketAllOf) SetId(v uint64) {
o.Id = v
}
// GetName returns the Name field value
func (o *TemplateSummaryBucketAllOf) GetName() string {
if o == nil {
var ret string
return ret
}
return o.Name
}
// GetNameOk returns a tuple with the Name field value
// and a boolean to check if the value has been set.
func (o *TemplateSummaryBucketAllOf) GetNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Name, true
}
// SetName sets field value
func (o *TemplateSummaryBucketAllOf) SetName(v string) {
o.Name = v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *TemplateSummaryBucketAllOf) GetDescription() string {
if o == nil || o.Description == nil {
var ret string
return ret
}
return *o.Description
}
// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *TemplateSummaryBucketAllOf) GetDescriptionOk() (*string, bool) {
if o == nil || o.Description == nil {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *TemplateSummaryBucketAllOf) HasDescription() bool {
if o != nil && o.Description != nil {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *TemplateSummaryBucketAllOf) SetDescription(v string) {
o.Description = &v
}
// GetRetentionPeriod returns the RetentionPeriod field value
func (o *TemplateSummaryBucketAllOf) GetRetentionPeriod() int64 {
if o == nil {
var ret int64
return ret
}
return o.RetentionPeriod
}
// GetRetentionPeriodOk returns a tuple with the RetentionPeriod field value
// and a boolean to check if the value has been set.
func (o *TemplateSummaryBucketAllOf) GetRetentionPeriodOk() (*int64, bool) {
if o == nil {
return nil, false
}
return &o.RetentionPeriod, true
}
// SetRetentionPeriod sets field value
func (o *TemplateSummaryBucketAllOf) SetRetentionPeriod(v int64) {
o.RetentionPeriod = v
}
// GetSchemaType returns the SchemaType field value if set, zero value otherwise.
func (o *TemplateSummaryBucketAllOf) GetSchemaType() SchemaType {
if o == nil || o.SchemaType == nil {
var ret SchemaType
return ret
}
return *o.SchemaType
}
// GetSchemaTypeOk returns a tuple with the SchemaType field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *TemplateSummaryBucketAllOf) GetSchemaTypeOk() (*SchemaType, bool) {
if o == nil || o.SchemaType == nil {
return nil, false
}
return o.SchemaType, true
}
// HasSchemaType returns a boolean if a field has been set.
func (o *TemplateSummaryBucketAllOf) HasSchemaType() bool {
if o != nil && o.SchemaType != nil {
return true
}
return false
}
// SetSchemaType gets a reference to the given SchemaType and assigns it to the SchemaType field.
func (o *TemplateSummaryBucketAllOf) SetSchemaType(v SchemaType) {
o.SchemaType = &v
}
func (o TemplateSummaryBucketAllOf) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if true {
toSerialize["id"] = o.Id
}
if true {
toSerialize["name"] = o.Name
}
if o.Description != nil {
toSerialize["description"] = o.Description
}
if true {
toSerialize["retentionPeriod"] = o.RetentionPeriod
}
if o.SchemaType != nil {
toSerialize["schemaType"] = o.SchemaType
}
return json.Marshal(toSerialize)
}
type NullableTemplateSummaryBucketAllOf struct {
value *TemplateSummaryBucketAllOf
isSet bool
}
func (v NullableTemplateSummaryBucketAllOf) Get() *TemplateSummaryBucketAllOf {
return v.value
}
func (v *NullableTemplateSummaryBucketAllOf) Set(val *TemplateSummaryBucketAllOf) {
v.value = val
v.isSet = true
}
func (v NullableTemplateSummaryBucketAllOf) IsSet() bool {
return v.isSet
}
func (v *NullableTemplateSummaryBucketAllOf) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableTemplateSummaryBucketAllOf(val *TemplateSummaryBucketAllOf) *NullableTemplateSummaryBucketAllOf {
return &NullableTemplateSummaryBucketAllOf{value: val, isSet: true}
}
func (v NullableTemplateSummaryBucketAllOf) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableTemplateSummaryBucketAllOf) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}