github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelGeo.go (about)

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