github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/model_data_store_config.go (about)

     1  /*
     2   * Cios Openapi
     3   *
     4   * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
     5   *
     6   * API version: 1.0.1
     7   */
     8  
     9  // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
    10  
    11  package cios
    12  
    13  import (
    14  	"encoding/json"
    15  )
    16  
    17  // DataStoreConfig struct for DataStoreConfig
    18  type DataStoreConfig struct {
    19  	Enabled *bool `json:"enabled,omitempty"`
    20  	MaxSize *string `json:"max_size,omitempty"`
    21  	MaxCount *string `json:"max_count,omitempty"`
    22  }
    23  
    24  // NewDataStoreConfig instantiates a new DataStoreConfig object
    25  // This constructor will assign default values to properties that have it defined,
    26  // and makes sure properties required by API are set, but the set of arguments
    27  // will change when the set of required properties is changed
    28  func NewDataStoreConfig() *DataStoreConfig {
    29  	this := DataStoreConfig{}
    30  	return &this
    31  }
    32  
    33  // NewDataStoreConfigWithDefaults instantiates a new DataStoreConfig object
    34  // This constructor will only assign default values to properties that have it defined,
    35  // but it doesn't guarantee that properties required by API are set
    36  func NewDataStoreConfigWithDefaults() *DataStoreConfig {
    37  	this := DataStoreConfig{}
    38  	return &this
    39  }
    40  
    41  // GetEnabled returns the Enabled field value if set, zero value otherwise.
    42  func (o *DataStoreConfig) GetEnabled() bool {
    43  	if o == nil || o.Enabled == nil {
    44  		var ret bool
    45  		return ret
    46  	}
    47  	return *o.Enabled
    48  }
    49  
    50  // GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise
    51  // and a boolean to check if the value has been set.
    52  func (o *DataStoreConfig) GetEnabledOk() (*bool, bool) {
    53  	if o == nil || o.Enabled == nil {
    54  		return nil, false
    55  	}
    56  	return o.Enabled, true
    57  }
    58  
    59  // HasEnabled returns a boolean if a field has been set.
    60  func (o *DataStoreConfig) HasEnabled() bool {
    61  	if o != nil && o.Enabled != nil {
    62  		return true
    63  	}
    64  
    65  	return false
    66  }
    67  
    68  // SetEnabled gets a reference to the given bool and assigns it to the Enabled field.
    69  func (o *DataStoreConfig) SetEnabled(v bool) {
    70  	o.Enabled = &v
    71  }
    72  
    73  // GetMaxSize returns the MaxSize field value if set, zero value otherwise.
    74  func (o *DataStoreConfig) GetMaxSize() string {
    75  	if o == nil || o.MaxSize == nil {
    76  		var ret string
    77  		return ret
    78  	}
    79  	return *o.MaxSize
    80  }
    81  
    82  // GetMaxSizeOk returns a tuple with the MaxSize field value if set, nil otherwise
    83  // and a boolean to check if the value has been set.
    84  func (o *DataStoreConfig) GetMaxSizeOk() (*string, bool) {
    85  	if o == nil || o.MaxSize == nil {
    86  		return nil, false
    87  	}
    88  	return o.MaxSize, true
    89  }
    90  
    91  // HasMaxSize returns a boolean if a field has been set.
    92  func (o *DataStoreConfig) HasMaxSize() bool {
    93  	if o != nil && o.MaxSize != nil {
    94  		return true
    95  	}
    96  
    97  	return false
    98  }
    99  
   100  // SetMaxSize gets a reference to the given string and assigns it to the MaxSize field.
   101  func (o *DataStoreConfig) SetMaxSize(v string) {
   102  	o.MaxSize = &v
   103  }
   104  
   105  // GetMaxCount returns the MaxCount field value if set, zero value otherwise.
   106  func (o *DataStoreConfig) GetMaxCount() string {
   107  	if o == nil || o.MaxCount == nil {
   108  		var ret string
   109  		return ret
   110  	}
   111  	return *o.MaxCount
   112  }
   113  
   114  // GetMaxCountOk returns a tuple with the MaxCount field value if set, nil otherwise
   115  // and a boolean to check if the value has been set.
   116  func (o *DataStoreConfig) GetMaxCountOk() (*string, bool) {
   117  	if o == nil || o.MaxCount == nil {
   118  		return nil, false
   119  	}
   120  	return o.MaxCount, true
   121  }
   122  
   123  // HasMaxCount returns a boolean if a field has been set.
   124  func (o *DataStoreConfig) HasMaxCount() bool {
   125  	if o != nil && o.MaxCount != nil {
   126  		return true
   127  	}
   128  
   129  	return false
   130  }
   131  
   132  // SetMaxCount gets a reference to the given string and assigns it to the MaxCount field.
   133  func (o *DataStoreConfig) SetMaxCount(v string) {
   134  	o.MaxCount = &v
   135  }
   136  
   137  func (o DataStoreConfig) MarshalJSON() ([]byte, error) {
   138  	toSerialize := map[string]interface{}{}
   139  	if o.Enabled != nil {
   140  		toSerialize["enabled"] = o.Enabled
   141  	}
   142  	if o.MaxSize != nil {
   143  		toSerialize["max_size"] = o.MaxSize
   144  	}
   145  	if o.MaxCount != nil {
   146  		toSerialize["max_count"] = o.MaxCount
   147  	}
   148  	return json.Marshal(toSerialize)
   149  }
   150  
   151  type NullableDataStoreConfig struct {
   152  	value *DataStoreConfig
   153  	isSet bool
   154  }
   155  
   156  func (v NullableDataStoreConfig) Get() *DataStoreConfig {
   157  	return v.value
   158  }
   159  
   160  func (v *NullableDataStoreConfig) Set(val *DataStoreConfig) {
   161  	v.value = val
   162  	v.isSet = true
   163  }
   164  
   165  func (v NullableDataStoreConfig) IsSet() bool {
   166  	return v.isSet
   167  }
   168  
   169  func (v *NullableDataStoreConfig) Unset() {
   170  	v.value = nil
   171  	v.isSet = false
   172  }
   173  
   174  func NewNullableDataStoreConfig(val *DataStoreConfig) *NullableDataStoreConfig {
   175  	return &NullableDataStoreConfig{value: val, isSet: true}
   176  }
   177  
   178  func (v NullableDataStoreConfig) MarshalJSON() ([]byte, error) {
   179  	return json.Marshal(v.value)
   180  }
   181  
   182  func (v *NullableDataStoreConfig) UnmarshalJSON(src []byte) error {
   183  	v.isSet = true
   184  	return json.Unmarshal(src, &v.value)
   185  }
   186  
   187