pub struct InternalErrorDetails {
pub error_code: Option<i64>,
pub error_code_detail: Option<String>,
pub operation_code: Option<i64>,
pub operation_code_detail: Option<String>,
}Expand description
Internal error details if present for the ADD_ESIM or REMOVE_ESIM command.
This type is not used in any activity, and only used as part of another schema.
Fields§
§error_code: Option<i64>Output only. Integer representation of the error code as specified here (https://developer.android.com/reference/android/telephony/euicc/EuiccManager#EXTRA_EMBEDDED_SUBSCRIPTION_DETAILED_CODE). See also, OPERATION_SMDX_SUBJECT_REASON_CODE. See error_code_detail for more details.
error_code_detail: Option<String>Output only. The error code detail corresponding to the error_code.
operation_code: Option<i64>Output only. Integer representation of the operation code as specified here (https://developer.android.com/reference/android/telephony/euicc/EuiccManager#EXTRA_EMBEDDED_SUBSCRIPTION_DETAILED_CODE). See operation_code_detail for more details.
operation_code_detail: Option<String>Output only. The operation code detail corresponding to the operation_code.
Trait Implementations§
Source§impl Clone for InternalErrorDetails
impl Clone for InternalErrorDetails
Source§fn clone(&self) -> InternalErrorDetails
fn clone(&self) -> InternalErrorDetails
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more