Class TaskInfo.

TaskInfo

interface TaskInfo {
    Category?: null | string;
    CurrentProgressPercentage?: null | number;
    Description?: null | string;
    Id?: null | string;
    IsHidden?: boolean;
    Key?: null | string;
    LastExecutionResult?: TaskResult;
    Name?: null | string;
    State?: TaskState;
    Triggers?: null | TaskTriggerInfo[];
}

Properties

Category?: null | string

Gets or sets the category.

TaskInfo

CurrentProgressPercentage?: null | number

Gets or sets the progress.

TaskInfo

Description?: null | string

Gets or sets the description.

TaskInfo

Id?: null | string

Gets or sets the id.

TaskInfo

IsHidden?: boolean

Gets or sets a value indicating whether this instance is hidden.

TaskInfo

Key?: null | string

Gets or sets the key.

TaskInfo

LastExecutionResult?: TaskResult

TaskInfo

Name?: null | string

Gets or sets the name.

TaskInfo

State?: TaskState

TaskInfo

Triggers?: null | TaskTriggerInfo[]

Gets or sets the triggers.

TaskInfo