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

EsimCommandStatus

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

Status and error details (if present) of an ADD_ESIM or REMOVE_ESIM command.

interface EsimCommandStatus {
readonly esimInfo?: EsimInfo;
readonly internalErrorDetails?: InternalErrorDetails;
readonly status?:
| "STATUS_UNSPECIFIED"
| "SUCCESS"
| "IN_PROGRESS"
| "PENDING_USER_ACTION"
| "ERROR_SETUP_IN_PROGRESS"
| "ERROR_USER_DENIED"
| "INTERNAL_ERROR"
| "ERROR_ICC_ID_NOT_FOUND"
| "ERROR_MULTIPLE_ACTIVE_ESIMS_NO_AVAILABLE_SLOT";
}

§Properties

§
readonly esimInfo?: EsimInfo
[src]

Output only. Information about the eSIM added or removed. This is populated only when the eSIM operation status is SUCCESS.

§
readonly internalErrorDetails?: InternalErrorDetails
[src]

Output only. Details of the error if the status is set to INTERNAL_ERROR.

§
readonly status?: "STATUS_UNSPECIFIED" | "SUCCESS" | "IN_PROGRESS" | "PENDING_USER_ACTION" | "ERROR_SETUP_IN_PROGRESS" | "ERROR_USER_DENIED" | "INTERNAL_ERROR" | "ERROR_ICC_ID_NOT_FOUND" | "ERROR_MULTIPLE_ACTIVE_ESIMS_NO_AVAILABLE_SLOT"
[src]

Output only. Status of an ADD_ESIM or REMOVE_ESIM command.