Class: Google::Apis::AndroidmanagementV1::EsimCommandStatus
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::EsimCommandStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidmanagement_v1/classes.rb,
lib/google/apis/androidmanagement_v1/representations.rb,
lib/google/apis/androidmanagement_v1/representations.rb
Overview
Status and error details (if present) of an ADD_ESIM or REMOVE_ESIM command.
Instance Attribute Summary collapse
-
#esim_info ⇒ Google::Apis::AndroidmanagementV1::EsimInfo
Details of the eSIM added or removed.
-
#internal_error_details ⇒ Google::Apis::AndroidmanagementV1::InternalErrorDetails
Internal error details if present for the ADD_ESIM or REMOVE_ESIM command.
-
#status ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EsimCommandStatus
constructor
A new instance of EsimCommandStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EsimCommandStatus
Returns a new instance of EsimCommandStatus.
3120 3121 3122 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3120 def initialize(**args) update!(**args) end |
Instance Attribute Details
#esim_info ⇒ Google::Apis::AndroidmanagementV1::EsimInfo
Details of the eSIM added or removed.
Corresponds to the JSON property esimInfo
3108 3109 3110 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3108 def esim_info @esim_info end |
#internal_error_details ⇒ Google::Apis::AndroidmanagementV1::InternalErrorDetails
Internal error details if present for the ADD_ESIM or REMOVE_ESIM command.
Corresponds to the JSON property internalErrorDetails
3113 3114 3115 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3113 def internal_error_details @internal_error_details end |
#status ⇒ String
Output only. Status of an ADD_ESIM or REMOVE_ESIM command.
Corresponds to the JSON property status
3118 3119 3120 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3118 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3125 3126 3127 3128 3129 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3125 def update!(**args) @esim_info = args[:esim_info] if args.key?(:esim_info) @internal_error_details = args[:internal_error_details] if args.key?(:internal_error_details) @status = args[:status] if args.key?(:status) end |