Class SensorCommand
[DataContract]
public class SensorCommand
- Inheritance
-
SensorCommand
- Inherited Members
Properties
CommandId
ID to check the status of the command request
[DataMember(Name = "commandId")]
public string CommandId { get; set; }
Property Value
CompletedAt
Time when the command was completed
[DataMember(Name = "completedAt")]
public DateTime? CompletedAt { get; set; }
Property Value
CreatedAt
Time when the command was triggered
[DataMember(Name = "CreatedAt")]
public DateTime CreatedAt { get; set; }
Property Value
CreatedBy
Information about the admin who triggered the command
[DataMember(Name = "createdBy")]
public SensorCommandCreatedby CreatedBy { get; set; }
Property Value
Errors
Array of errors if failed
[DataMember(Name = "errors")]
public List<string> Errors { get; set; }
Property Value
Gateway
Info about the gateway that was used to connect to the sensor
[DataMember(Name = "gateway")]
public SensorCommandGateway Gateway { get; set; }
Property Value
Operation
Operation run on the sensor
[DataMember(Name = "operation")]
public SensorCommandOperation Operation { get; set; }
Property Value
Status
Status of the command request
[DataMember(Name = "status")]
public string Status { get; set; }