github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelCircular.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // CircularGeofenceManagementCondition Contains the information to define a circular geo-fence management condition, an area of interest, to monitor.
     6  type CircularGeofenceManagementCondition struct {
     7  	// LocationManagementCondition is the base model of CircularGeofenceManagementCondition
     8  	LocationManagementCondition
     9  	// Latitude Latitude in degrees, between -90 and +90 inclusive.
    10  	Latitude *float64 `json:"latitude,omitempty"`
    11  	// Longitude Longitude in degrees, between -180 and +180 inclusive.
    12  	Longitude *float64 `json:"longitude,omitempty"`
    13  	// RadiusInMeters Radius in meters.
    14  	RadiusInMeters *float64 `json:"radiusInMeters,omitempty"`
    15  }