github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/model_multiple_circle.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  // MultipleCircle struct for MultipleCircle
    18  type MultipleCircle struct {
    19  	Total *int64 `json:"total,omitempty"`
    20  	Circles *[]Circle `json:"circles,omitempty"`
    21  }
    22  
    23  // NewMultipleCircle instantiates a new MultipleCircle object
    24  // This constructor will assign default values to properties that have it defined,
    25  // and makes sure properties required by API are set, but the set of arguments
    26  // will change when the set of required properties is changed
    27  func NewMultipleCircle() *MultipleCircle {
    28  	this := MultipleCircle{}
    29  	return &this
    30  }
    31  
    32  // NewMultipleCircleWithDefaults instantiates a new MultipleCircle object
    33  // This constructor will only assign default values to properties that have it defined,
    34  // but it doesn't guarantee that properties required by API are set
    35  func NewMultipleCircleWithDefaults() *MultipleCircle {
    36  	this := MultipleCircle{}
    37  	return &this
    38  }
    39  
    40  // GetTotal returns the Total field value if set, zero value otherwise.
    41  func (o *MultipleCircle) GetTotal() int64 {
    42  	if o == nil || o.Total == nil {
    43  		var ret int64
    44  		return ret
    45  	}
    46  	return *o.Total
    47  }
    48  
    49  // GetTotalOk returns a tuple with the Total field value if set, nil otherwise
    50  // and a boolean to check if the value has been set.
    51  func (o *MultipleCircle) GetTotalOk() (*int64, bool) {
    52  	if o == nil || o.Total == nil {
    53  		return nil, false
    54  	}
    55  	return o.Total, true
    56  }
    57  
    58  // HasTotal returns a boolean if a field has been set.
    59  func (o *MultipleCircle) HasTotal() bool {
    60  	if o != nil && o.Total != nil {
    61  		return true
    62  	}
    63  
    64  	return false
    65  }
    66  
    67  // SetTotal gets a reference to the given int64 and assigns it to the Total field.
    68  func (o *MultipleCircle) SetTotal(v int64) {
    69  	o.Total = &v
    70  }
    71  
    72  // GetCircles returns the Circles field value if set, zero value otherwise.
    73  func (o *MultipleCircle) GetCircles() []Circle {
    74  	if o == nil || o.Circles == nil {
    75  		var ret []Circle
    76  		return ret
    77  	}
    78  	return *o.Circles
    79  }
    80  
    81  // GetCirclesOk returns a tuple with the Circles field value if set, nil otherwise
    82  // and a boolean to check if the value has been set.
    83  func (o *MultipleCircle) GetCirclesOk() (*[]Circle, bool) {
    84  	if o == nil || o.Circles == nil {
    85  		return nil, false
    86  	}
    87  	return o.Circles, true
    88  }
    89  
    90  // HasCircles returns a boolean if a field has been set.
    91  func (o *MultipleCircle) HasCircles() bool {
    92  	if o != nil && o.Circles != nil {
    93  		return true
    94  	}
    95  
    96  	return false
    97  }
    98  
    99  // SetCircles gets a reference to the given []Circle and assigns it to the Circles field.
   100  func (o *MultipleCircle) SetCircles(v []Circle) {
   101  	o.Circles = &v
   102  }
   103  
   104  func (o MultipleCircle) MarshalJSON() ([]byte, error) {
   105  	toSerialize := map[string]interface{}{}
   106  	if o.Total != nil {
   107  		toSerialize["total"] = o.Total
   108  	}
   109  	if o.Circles != nil {
   110  		toSerialize["circles"] = o.Circles
   111  	}
   112  	return json.Marshal(toSerialize)
   113  }
   114  
   115  type NullableMultipleCircle struct {
   116  	value *MultipleCircle
   117  	isSet bool
   118  }
   119  
   120  func (v NullableMultipleCircle) Get() *MultipleCircle {
   121  	return v.value
   122  }
   123  
   124  func (v *NullableMultipleCircle) Set(val *MultipleCircle) {
   125  	v.value = val
   126  	v.isSet = true
   127  }
   128  
   129  func (v NullableMultipleCircle) IsSet() bool {
   130  	return v.isSet
   131  }
   132  
   133  func (v *NullableMultipleCircle) Unset() {
   134  	v.value = nil
   135  	v.isSet = false
   136  }
   137  
   138  func NewNullableMultipleCircle(val *MultipleCircle) *NullableMultipleCircle {
   139  	return &NullableMultipleCircle{value: val, isSet: true}
   140  }
   141  
   142  func (v NullableMultipleCircle) MarshalJSON() ([]byte, error) {
   143  	return json.Marshal(v.value)
   144  }
   145  
   146  func (v *NullableMultipleCircle) UnmarshalJSON(src []byte) error {
   147  	v.isSet = true
   148  	return json.Unmarshal(src, &v.value)
   149  }
   150  
   151