interface Status {
    count: number;
    failedCount: number;
    jobId: string;
    processedCount: number;
    remainingCount: number;
    status: LiteralString<"InProgress" | "Initialized" | "Completed">;
}

Properties

count: number
failedCount: number
jobId: string
processedCount: number
remainingCount: number
status: LiteralString<"InProgress" | "Initialized" | "Completed">