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

ProvisioningInfo

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

Information about a device that is available during setup.

interface ProvisioningInfo {
apiLevel?: number;
brand?: string;
enterprise?: string;
imei?: string;
managementMode?: "MANAGEMENT_MODE_UNSPECIFIED" | "DEVICE_OWNER" | "PROFILE_OWNER";
meid?: string;
model?: string;
name?: string;
ownership?: "OWNERSHIP_UNSPECIFIED" | "COMPANY_OWNED" | "PERSONALLY_OWNED";
serialNumber?: string;
}

§Properties

§
apiLevel?: number
[src]

The API level of the Android platform version running on the device.

§
brand?: string
[src]

The brand of the device. For example, Google.

§
enterprise?: string
[src]

The name of the enterprise in the form enterprises/{enterprise}.

§
imei?: string
[src]

IMEI number of the GSM device. For example, A1000031212.

§
managementMode?: "MANAGEMENT_MODE_UNSPECIFIED" | "DEVICE_OWNER" | "PROFILE_OWNER"
[src]

The management mode of the device or profile.

§
meid?: string
[src]

MEID number of the CDMA device. For example, A00000292788E1.

§
model?: string
[src]

The model of the device. For example, Asus Nexus 7.

§
name?: string
[src]

The name of this resource in the form provisioningInfo/{provisioning_info}.

§
ownership?: "OWNERSHIP_UNSPECIFIED" | "COMPANY_OWNED" | "PERSONALLY_OWNED"
[src]

Ownership of the managed device.

§
serialNumber?: string
[src]

The device serial number.