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

DeviceReference

import type { DeviceReference } from "https://googleapis.deno.dev/v1/androiddeviceprovisioning:v1.ts";

A DeviceReference is an API abstraction that lets you supply a device argument to a method using one of the following identifier types: * A numeric API resource ID. * Real-world hardware IDs, such as IMEI number, belonging to the manufactured device. Methods that operate on devices take a DeviceReference as a parameter type because it's more flexible for the caller. To learn more about device identifiers, read Identifiers.

interface DeviceReference {
deviceId?: bigint;
deviceIdentifier?: DeviceIdentifier;
}

§Properties

§
deviceId?: bigint
[src]

The ID of the device.

§
deviceIdentifier?: DeviceIdentifier
[src]

The hardware IDs of the device.