Class DeviceCellularSimsUpdateRequest
Device Cellular Sims
[DataContract]
public class DeviceCellularSimsUpdateRequest
- Inheritance
-
DeviceCellularSimsUpdateRequest
- Inherited Members
Properties
SimFailover
SIM Failover settings.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "simFailover")]
public DeviceCellularSimsSimFailover? SimFailover { get; set; }
Property Value
SimOrdering
Specifies the ordering of all SIMs for an MG: primary, secondary, and not-in-use (when applicable). It's required for devices with 3 or more SIMs and can be used in place of 'isPrimary' for dual-SIM devices. To indicate eSIM, use 'sim3'. Sim failover will occur only between primary and secondary sim slots.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "simOrdering")]
public List<string>? SimOrdering { get; set; }
Property Value
Sims
List of SIMs. If a SIM was previously configured and not specified in this request, it will remain unchanged.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "sims")]
public List<DeviceCellularSimsSim>? Sims { get; set; }