lml-main
Version:
This is now a mono repository published into many standalone packages.
22 lines (21 loc) • 453 B
TypeScript
export interface PostLocationRequest {
gpsSatellites: number;
headingDegrees: number;
network: {
carrier: string;
isConnected: boolean;
networkType: string;
sStrength: 0;
};
objectId: string;
position: {
coordinates: {
latitude: number;
longitude: number;
};
type: string;
};
refId: string;
timestamp: string;
velocityKph: number;
}