Table of Contents

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

string

DeviceUrl

URL of the device this command was addressed to.

[JsonPropertyName("deviceURL")]
public string? DeviceUrl { get; init; }

Property Value

string

Dynamic

Whether this command was dynamically injected (not from a stored scenario).

public bool Dynamic { get; init; }

Property Value

bool

FailureType

Failure type string for this command (see FailureType).

public string? FailureType { get; init; }

Property Value

string

Parameters

Parameter values that were passed to the command.

public IReadOnlyList<object?>? Parameters { get; init; }

Property Value

IReadOnlyList<object>

Rank

Zero-based rank of this command within the execution action group.

public int Rank { get; init; }

Property Value

int

State

Terminal state reached by this specific command.

public ExecutionState State { get; init; }

Property Value

ExecutionState