Class AdvancedMobileLocation
- Namespace
- XENBIT.ResQueServe.Core.Models
- Assembly
- RQS.Core.dll
public record AdvancedMobileLocation : IAdvancedMobileLocation, IEquatable<AdvancedMobileLocation>
- Inheritance
-
AdvancedMobileLocation
- Implements
- Inherited Members
Properties
Accuracy
Accuracy of the location in meters.
[JsonPropertyName("location_accuracy")]
public double? Accuracy { get; init; }
Property Value
Altitude
Altitude of the location in meters.
[JsonPropertyName("location_altitude")]
public double? Altitude { get; init; }
Property Value
Latitude
Latitude of the location.
[JsonPropertyName("location_latitude")]
public double? Latitude { get; init; }
Property Value
LocationTime
Time when the location was recorded.
[JsonPropertyName("location_time")]
public DateTimeOffset? LocationTime { get; init; }
Property Value
Longitude
Longitude of the location.
[JsonPropertyName("location_longitude")]
public double? Longitude { get; init; }
Property Value
Source
Source of the location information (e.g., GPS, WiFi).
[JsonPropertyName("location_source")]
public string? Source { get; init; }
Property Value
Status
Status of the location data (e.g., ok).
[JsonPropertyName("status")]
public string? Status { get; init; }
Property Value
VerticalAccuracy
Vertical accuracy of the location in meters.
[JsonPropertyName("location_vertical_accuracy")]
public double? VerticalAccuracy { get; init; }