Class DeviceProvisioningStatus
[DataContract]
public class DeviceProvisioningStatus
- Inheritance
-
DeviceProvisioningStatus
- Inherited Members
Properties
Mac
The device MAC address.
[DataMember(Name = "mac")]
public string? Mac { get; set; }
Property Value
Name
The device name.
[DataMember(Name = "name")]
public string? Name { get; set; }
Property Value
Network
Network info
[DataMember(Name = "network")]
public DeviceProvisioningStatusNetwork? Network { get; set; }
Property Value
ProductType
Device product type.
[DataMember(Name = "productType")]
public string? ProductType { get; set; }
Property Value
Serial
The device serial number.
[DataMember(Name = "serial")]
public string? Serial { get; set; }
Property Value
Status
The device provisioning status. Possible statuses: unprovisioned, incomplete, complete.
[DataMember(Name = "status")]
public DeviceProvisioningStatusStatus? Status { get; set; }
Property Value
Tags
List of custom tags for the device.
[DataMember(Name = "tags")]
public List<string>? Tags { get; set; }