github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/model_data_store_object_location.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  // DataStoreObjectLocation struct for DataStoreObjectLocation
    18  type DataStoreObjectLocation struct {
    19  	Latitude *float32 `json:"latitude,omitempty"`
    20  	Longitude *float32 `json:"longitude,omitempty"`
    21  	Altitude *float32 `json:"altitude,omitempty"`
    22  }
    23  
    24  // NewDataStoreObjectLocation instantiates a new DataStoreObjectLocation 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 NewDataStoreObjectLocation() *DataStoreObjectLocation {
    29  	this := DataStoreObjectLocation{}
    30  	return &this
    31  }
    32  
    33  // NewDataStoreObjectLocationWithDefaults instantiates a new DataStoreObjectLocation 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 NewDataStoreObjectLocationWithDefaults() *DataStoreObjectLocation {
    37  	this := DataStoreObjectLocation{}
    38  	return &this
    39  }
    40  
    41  // GetLatitude returns the Latitude field value if set, zero value otherwise.
    42  func (o *DataStoreObjectLocation) GetLatitude() float32 {
    43  	if o == nil || o.Latitude == nil {
    44  		var ret float32
    45  		return ret
    46  	}
    47  	return *o.Latitude
    48  }
    49  
    50  // GetLatitudeOk returns a tuple with the Latitude field value if set, nil otherwise
    51  // and a boolean to check if the value has been set.
    52  func (o *DataStoreObjectLocation) GetLatitudeOk() (*float32, bool) {
    53  	if o == nil || o.Latitude == nil {
    54  		return nil, false
    55  	}
    56  	return o.Latitude, true
    57  }
    58  
    59  // HasLatitude returns a boolean if a field has been set.
    60  func (o *DataStoreObjectLocation) HasLatitude() bool {
    61  	if o != nil && o.Latitude != nil {
    62  		return true
    63  	}
    64  
    65  	return false
    66  }
    67  
    68  // SetLatitude gets a reference to the given float32 and assigns it to the Latitude field.
    69  func (o *DataStoreObjectLocation) SetLatitude(v float32) {
    70  	o.Latitude = &v
    71  }
    72  
    73  // GetLongitude returns the Longitude field value if set, zero value otherwise.
    74  func (o *DataStoreObjectLocation) GetLongitude() float32 {
    75  	if o == nil || o.Longitude == nil {
    76  		var ret float32
    77  		return ret
    78  	}
    79  	return *o.Longitude
    80  }
    81  
    82  // GetLongitudeOk returns a tuple with the Longitude field value if set, nil otherwise
    83  // and a boolean to check if the value has been set.
    84  func (o *DataStoreObjectLocation) GetLongitudeOk() (*float32, bool) {
    85  	if o == nil || o.Longitude == nil {
    86  		return nil, false
    87  	}
    88  	return o.Longitude, true
    89  }
    90  
    91  // HasLongitude returns a boolean if a field has been set.
    92  func (o *DataStoreObjectLocation) HasLongitude() bool {
    93  	if o != nil && o.Longitude != nil {
    94  		return true
    95  	}
    96  
    97  	return false
    98  }
    99  
   100  // SetLongitude gets a reference to the given float32 and assigns it to the Longitude field.
   101  func (o *DataStoreObjectLocation) SetLongitude(v float32) {
   102  	o.Longitude = &v
   103  }
   104  
   105  // GetAltitude returns the Altitude field value if set, zero value otherwise.
   106  func (o *DataStoreObjectLocation) GetAltitude() float32 {
   107  	if o == nil || o.Altitude == nil {
   108  		var ret float32
   109  		return ret
   110  	}
   111  	return *o.Altitude
   112  }
   113  
   114  // GetAltitudeOk returns a tuple with the Altitude field value if set, nil otherwise
   115  // and a boolean to check if the value has been set.
   116  func (o *DataStoreObjectLocation) GetAltitudeOk() (*float32, bool) {
   117  	if o == nil || o.Altitude == nil {
   118  		return nil, false
   119  	}
   120  	return o.Altitude, true
   121  }
   122  
   123  // HasAltitude returns a boolean if a field has been set.
   124  func (o *DataStoreObjectLocation) HasAltitude() bool {
   125  	if o != nil && o.Altitude != nil {
   126  		return true
   127  	}
   128  
   129  	return false
   130  }
   131  
   132  // SetAltitude gets a reference to the given float32 and assigns it to the Altitude field.
   133  func (o *DataStoreObjectLocation) SetAltitude(v float32) {
   134  	o.Altitude = &v
   135  }
   136  
   137  func (o DataStoreObjectLocation) MarshalJSON() ([]byte, error) {
   138  	toSerialize := map[string]interface{}{}
   139  	if o.Latitude != nil {
   140  		toSerialize["latitude"] = o.Latitude
   141  	}
   142  	if o.Longitude != nil {
   143  		toSerialize["longitude"] = o.Longitude
   144  	}
   145  	if o.Altitude != nil {
   146  		toSerialize["altitude"] = o.Altitude
   147  	}
   148  	return json.Marshal(toSerialize)
   149  }
   150  
   151  type NullableDataStoreObjectLocation struct {
   152  	value *DataStoreObjectLocation
   153  	isSet bool
   154  }
   155  
   156  func (v NullableDataStoreObjectLocation) Get() *DataStoreObjectLocation {
   157  	return v.value
   158  }
   159  
   160  func (v *NullableDataStoreObjectLocation) Set(val *DataStoreObjectLocation) {
   161  	v.value = val
   162  	v.isSet = true
   163  }
   164  
   165  func (v NullableDataStoreObjectLocation) IsSet() bool {
   166  	return v.isSet
   167  }
   168  
   169  func (v *NullableDataStoreObjectLocation) Unset() {
   170  	v.value = nil
   171  	v.isSet = false
   172  }
   173  
   174  func NewNullableDataStoreObjectLocation(val *DataStoreObjectLocation) *NullableDataStoreObjectLocation {
   175  	return &NullableDataStoreObjectLocation{value: val, isSet: true}
   176  }
   177  
   178  func (v NullableDataStoreObjectLocation) MarshalJSON() ([]byte, error) {
   179  	return json.Marshal(v.value)
   180  }
   181  
   182  func (v *NullableDataStoreObjectLocation) UnmarshalJSON(src []byte) error {
   183  	v.isSet = true
   184  	return json.Unmarshal(src, &v.value)
   185  }
   186  
   187