interface BulkTransitionTaskStatusResponse {
    errorMessage?: null | string;
    status: "FAILED" | "COMPLETED" | "IN_PROGRESS";
    taskId: string;
}

Hierarchy

  • Record<string, unknown>
    • BulkTransitionTaskStatusResponse

Properties

errorMessage?: null | string

Human-readable error message describing why the task failed. Only present when status is FAILED.

status: "FAILED" | "COMPLETED" | "IN_PROGRESS"

The current status of the task.

taskId: string

The ID of the task.