Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetDevicePositionResponse

import type { GetDevicePositionResponse } from "https://aws-api.deno.dev/v0.3/services/location.ts?docs=full";
interface GetDevicePositionResponse {
Accuracy?: PositionalAccuracy | null;
DeviceId?: string | null;
Position: number[];
PositionProperties?: {
[key: string]: string | null | undefined;
}
| null;
ReceivedTime: Date | number;
SampleTime: Date | number;
}

§Properties

§
Accuracy?: PositionalAccuracy | null
[src]

The accuracy of the device position.

§
DeviceId?: string | null
[src]

The device whose position you retrieved.

§
Position: number[]
[src]

The last known device position.

§
PositionProperties?: {
[key: string]: string | null | undefined;
}
| null
[src]

The properties associated with the position.

§
ReceivedTime: Date | number
[src]

The timestamp for when the tracker resource received the device position in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

§
SampleTime: Date | number
[src]

The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.