-
Notifications
You must be signed in to change notification settings - Fork 4
/
model_geo_coordinates.go
199 lines (165 loc) · 5.39 KB
/
model_geo_coordinates.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*
Libre Graph API
Libre Graph is a free API for cloud collaboration inspired by the MS Graph API.
API version: v1.0.4
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package libregraph
import (
"encoding/json"
)
// checks if the GeoCoordinates type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &GeoCoordinates{}
// GeoCoordinates The GeoCoordinates resource provides geographic coordinates and elevation of a location based on metadata contained within the file. If a DriveItem has a non-null location facet, the item represents a file with a known location associated with it.
type GeoCoordinates struct {
// The altitude (height), in feet, above sea level for the item. Read-only.
Altitude *float64 `json:"altitude,omitempty"`
// The latitude, in decimal, for the item. Read-only.
Latitude *float64 `json:"latitude,omitempty"`
// The longitude, in decimal, for the item. Read-only.
Longitude *float64 `json:"longitude,omitempty"`
}
// NewGeoCoordinates instantiates a new GeoCoordinates 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 NewGeoCoordinates() *GeoCoordinates {
this := GeoCoordinates{}
return &this
}
// NewGeoCoordinatesWithDefaults instantiates a new GeoCoordinates 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 NewGeoCoordinatesWithDefaults() *GeoCoordinates {
this := GeoCoordinates{}
return &this
}
// GetAltitude returns the Altitude field value if set, zero value otherwise.
func (o *GeoCoordinates) GetAltitude() float64 {
if o == nil || IsNil(o.Altitude) {
var ret float64
return ret
}
return *o.Altitude
}
// GetAltitudeOk returns a tuple with the Altitude field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GeoCoordinates) GetAltitudeOk() (*float64, bool) {
if o == nil || IsNil(o.Altitude) {
return nil, false
}
return o.Altitude, true
}
// HasAltitude returns a boolean if a field has been set.
func (o *GeoCoordinates) HasAltitude() bool {
if o != nil && !IsNil(o.Altitude) {
return true
}
return false
}
// SetAltitude gets a reference to the given float64 and assigns it to the Altitude field.
func (o *GeoCoordinates) SetAltitude(v float64) {
o.Altitude = &v
}
// GetLatitude returns the Latitude field value if set, zero value otherwise.
func (o *GeoCoordinates) GetLatitude() float64 {
if o == nil || IsNil(o.Latitude) {
var ret float64
return ret
}
return *o.Latitude
}
// GetLatitudeOk returns a tuple with the Latitude field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GeoCoordinates) GetLatitudeOk() (*float64, bool) {
if o == nil || IsNil(o.Latitude) {
return nil, false
}
return o.Latitude, true
}
// HasLatitude returns a boolean if a field has been set.
func (o *GeoCoordinates) HasLatitude() bool {
if o != nil && !IsNil(o.Latitude) {
return true
}
return false
}
// SetLatitude gets a reference to the given float64 and assigns it to the Latitude field.
func (o *GeoCoordinates) SetLatitude(v float64) {
o.Latitude = &v
}
// GetLongitude returns the Longitude field value if set, zero value otherwise.
func (o *GeoCoordinates) GetLongitude() float64 {
if o == nil || IsNil(o.Longitude) {
var ret float64
return ret
}
return *o.Longitude
}
// GetLongitudeOk returns a tuple with the Longitude field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GeoCoordinates) GetLongitudeOk() (*float64, bool) {
if o == nil || IsNil(o.Longitude) {
return nil, false
}
return o.Longitude, true
}
// HasLongitude returns a boolean if a field has been set.
func (o *GeoCoordinates) HasLongitude() bool {
if o != nil && !IsNil(o.Longitude) {
return true
}
return false
}
// SetLongitude gets a reference to the given float64 and assigns it to the Longitude field.
func (o *GeoCoordinates) SetLongitude(v float64) {
o.Longitude = &v
}
func (o GeoCoordinates) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o GeoCoordinates) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.Altitude) {
toSerialize["altitude"] = o.Altitude
}
if !IsNil(o.Latitude) {
toSerialize["latitude"] = o.Latitude
}
if !IsNil(o.Longitude) {
toSerialize["longitude"] = o.Longitude
}
return toSerialize, nil
}
type NullableGeoCoordinates struct {
value *GeoCoordinates
isSet bool
}
func (v NullableGeoCoordinates) Get() *GeoCoordinates {
return v.value
}
func (v *NullableGeoCoordinates) Set(val *GeoCoordinates) {
v.value = val
v.isSet = true
}
func (v NullableGeoCoordinates) IsSet() bool {
return v.isSet
}
func (v *NullableGeoCoordinates) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableGeoCoordinates(val *GeoCoordinates) *NullableGeoCoordinates {
return &NullableGeoCoordinates{value: val, isSet: true}
}
func (v NullableGeoCoordinates) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableGeoCoordinates) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}