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

ListDevicePositionsResponseEntry

import type { ListDevicePositionsResponseEntry } from "https://aws-api.deno.dev/v0.3/services/location.ts?docs=full";

Contains the tracker resource details.

interface ListDevicePositionsResponseEntry {
Accuracy?: PositionalAccuracy | null;
DeviceId: string;
Position: number[];
PositionProperties?: {
[key: string]: string | null | undefined;
}
| null;
SampleTime: Date | number;
}

§Properties

§
Accuracy?: PositionalAccuracy | null
[src]

The accuracy of the device position.

§
DeviceId: string
[src]

The ID of the device for this position.

§
Position: number[]
[src]

The last known device position. Empty if no positions currently stored.

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

The properties associated with the position.

§
SampleTime: Date | number
[src]

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