blob: a5ff16b779ab97ce5a4e3833196cc01ec8d54c90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// GeoCoordinates undocumented
type GeoCoordinates struct {
// Object is the base model of GeoCoordinates
Object
// Altitude undocumented
Altitude *float64 `json:"altitude,omitempty"`
// Latitude undocumented
Latitude *float64 `json:"latitude,omitempty"`
// Longitude undocumented
Longitude *float64 `json:"longitude,omitempty"`
}
|