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

DeviceClaim

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

A record of a device claimed by a reseller for a customer. Devices claimed for zero-touch enrollment have a claim with the type SECTION_TYPE_ZERO_TOUCH. To learn more, read Claim devices for customers.

interface DeviceClaim {
additionalService?: "ADDITIONAL_SERVICE_UNSPECIFIED" | "DEVICE_PROTECTION";
googleWorkspaceCustomerId?: string;
ownerCompanyId?: bigint;
resellerId?: bigint;
readonly sectionType?: "SECTION_TYPE_UNSPECIFIED" | "SECTION_TYPE_SIM_LOCK" | "SECTION_TYPE_ZERO_TOUCH";
vacationModeExpireTime?: Date;
vacationModeStartTime?: Date;
}

§Properties

§
additionalService?: "ADDITIONAL_SERVICE_UNSPECIFIED" | "DEVICE_PROTECTION"
[src]

The Additional service registered for the device.

§
googleWorkspaceCustomerId?: string
[src]

The ID of the Google Workspace account that owns the Chrome OS device.

§
ownerCompanyId?: bigint
[src]

The ID of the Customer that purchased the device.

§
resellerId?: bigint
[src]

The ID of the reseller that claimed the device.

§
readonly sectionType?: "SECTION_TYPE_UNSPECIFIED" | "SECTION_TYPE_SIM_LOCK" | "SECTION_TYPE_ZERO_TOUCH"
[src]

Output only. The type of claim made on the device.

§
vacationModeExpireTime?: Date
[src]

The timestamp when the device will exit ‘vacation mode’. This value is present iff the device is in 'vacation mode'.

§
vacationModeStartTime?: Date
[src]

The timestamp when the device was put into ‘vacation mode’. This value is present iff the device is in 'vacation mode'.