pub struct TelephonyInfo {
pub activation_state: Option<String>,
pub carrier_name: Option<String>,
pub config_mode: Option<String>,
pub icc_id: Option<String>,
pub phone_number: Option<String>,
}Expand description
Telephony information associated with a given SIM card on the device. Only supported on fully managed devices starting from Android API level 23.
This type is not used in any activity, and only used as part of another schema.
Fields§
§activation_state: Option<String>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.
carrier_name: Option<String>The carrier name associated with this SIM card.
config_mode: Option<String>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.
icc_id: Option<String>Output only. The ICCID associated with this SIM card.
phone_number: Option<String>The phone number associated with this SIM card.
Trait Implementations§
Source§impl Clone for TelephonyInfo
impl Clone for TelephonyInfo
Source§fn clone(&self) -> TelephonyInfo
fn clone(&self) -> TelephonyInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more