Class HistoryExecutionCommand
- Namespace
- OverKizApi.Models
- Assembly
- OverKizApi.dll
A single command record within a HistoryExecution.
public sealed class HistoryExecutionCommand
- Inheritance
-
HistoryExecutionCommand
- Inherited Members
Properties
Command
Name of the command that was executed.
public string? Command { get; init; }
Property Value
DeviceUrl
URL of the device this command was addressed to.
[JsonPropertyName("deviceURL")]
public string? DeviceUrl { get; init; }
Property Value
Dynamic
Whether this command was dynamically injected (not from a stored scenario).
public bool Dynamic { get; init; }
Property Value
FailureType
Failure type string for this command (see FailureType).
public string? FailureType { get; init; }
Property Value
Parameters
Parameter values that were passed to the command.
public IReadOnlyList<object?>? Parameters { get; init; }
Property Value
Rank
Zero-based rank of this command within the execution action group.
public int Rank { get; init; }
Property Value
State
Terminal state reached by this specific command.
public ExecutionState State { get; init; }