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 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.