interface BulkTransitionTaskResponse {
    status: "FAILED" | "COMPLETED" | "IN_PROGRESS";
    statusUrl: string;
    taskId: string;
}

Hierarchy

  • Record<string, unknown>
    • BulkTransitionTaskResponse

Properties

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

The current status of the task.

statusUrl: string

URL to poll for task progress.

taskId: string

The ID of the async task.