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

UnclaimDeviceRequest

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

Request message to unclaim a device.

interface UnclaimDeviceRequest {
deviceId?: bigint;
deviceIdentifier?: DeviceIdentifier;
sectionType?: "SECTION_TYPE_UNSPECIFIED" | "SECTION_TYPE_SIM_LOCK" | "SECTION_TYPE_ZERO_TOUCH";
vacationModeDays?: number;
vacationModeExpireTime?: Date;
}

§Properties

§
deviceId?: bigint
[src]

Required. The device ID returned by ClaimDevice.

§
deviceIdentifier?: DeviceIdentifier
[src]

Required. The device identifier you used when you claimed this device.

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

Required. The section type of the device's provisioning record.

§
vacationModeDays?: number
[src]

The duration of the vacation unlock starting from when the request is processed. (1 day is treated as 24 hours)

§
vacationModeExpireTime?: Date
[src]

The expiration time of the vacation unlock.