TelephonyInfo
import type { TelephonyInfo } from "https://googleapis.deno.dev/v1/androidmanagement:v1.ts";
Telephony information associated with a given SIM card on the device. Only supported on fully managed devices starting from Android API level 23.
interface TelephonyInfo {
readonly activationState?: "ACTIVATION_STATE_UNSPECIFIED" | "ACTIVATED" | "NOT_ACTIVATED";
carrierName?: string;
readonly configMode?: "CONFIG_MODE_UNSPECIFIED" | "ADMIN_CONFIGURED" | "USER_CONFIGURED";
readonly iccId?: string;
phoneNumber?: string;
}§Properties
§
readonly activationState?: "ACTIVATION_STATE_UNSPECIFIED" | "ACTIVATED" | "NOT_ACTIVATED"
[src]Output only. Activation state of the SIM card on the device. This is applicable for eSIMs only. This is supported on all devices for API level 35 and above. This is always ACTIVATION_STATE_UNSPECIFIED for physical SIMs and for devices below API level 35.
§
readonly configMode?: "CONFIG_MODE_UNSPECIFIED" | "ADMIN_CONFIGURED" | "USER_CONFIGURED"
[src]Output only. The configuration mode of the SIM card on the device. This is applicable for eSIMs only. This is supported on all devices for API level 35 and above. This is always CONFIG_MODE_UNSPECIFIED for physical SIMs and for devices below API level 35.