CitraClient.Schemas.Waypoint (citra_client v0.3.0)
View SourceA geographic location with a time range for access calculations.
Fields
:altitude—number()— Altitude in meters above sea level:end—DateTime.t()— UTC maximum boundary for access search:latitude—number()— Latitude in degrees (-90 to 90):longitude—number()— Longitude in degrees (-180 to 180):start—DateTime.t()— UTC minimum boundary for access search
Summary
Functions
Build this struct from a decoded JSON map received from the API. Unknown fields are ignored.
Convert this struct into a map with the API's camelCase keys, ready
to be JSON-encoded. Fields whose value is nil are omitted.
Types
@type t() :: %CitraClient.Schemas.Waypoint{ altitude: number() | nil, end: DateTime.t() | nil, latitude: number() | nil, longitude: number() | nil, start: DateTime.t() | nil }