@jellyfin/sdk
    Preparing search index...

    Interface TaskInfo

    Class TaskInfo.

    TaskInfo

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

    Properties

    Category?: string | null

    Gets or sets the category.

    TaskInfo

    CurrentProgressPercentage?: number | null

    Gets or sets the progress.

    TaskInfo

    Description?: string | null

    Gets or sets the description.

    TaskInfo

    Id?: string | null

    Gets or sets the id.

    TaskInfo

    IsHidden?: boolean

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

    TaskInfo

    Key?: string | null

    Gets or sets the key.

    TaskInfo

    LastExecutionResult?: TaskResult

    TaskInfo

    Name?: string | null

    Gets or sets the name.

    TaskInfo

    State?: TaskState

    TaskInfo

    Triggers?: TaskTriggerInfo[] | null

    Gets or sets the triggers.

    TaskInfo