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;
}
