Table of Contents

Class Execution

Namespace
OverKizApi.Models
Assembly
OverKizApi.dll

Represents an execution that is currently active (in-progress or queued) on a gateway. Returned by exec/current. For completed executions see HistoryExecution.

public sealed class Execution
Inheritance
Execution
Inherited Members

Properties

ActionGroup

Raw action group payload as returned by the API.

public IReadOnlyList<IDictionary<string, object?>> ActionGroup { get; init; }

Property Value

IReadOnlyList<IDictionary<string, object>>

Description

Human-readable description or label for the execution.

public string? Description { get; init; }

Property Value

string

Id

Unique execution ID (also called execId in the API).

public string? Id { get; init; }

Property Value

string

Owner

Owner key identifying who triggered the execution.

public string? Owner { get; init; }

Property Value

string

State

Current state string of the execution (see ExecutionState).

public string? State { get; init; }

Property Value

string