Skip to content

FileCounts

File processing status counts.

Example Usage

typescript
import { FileCounts } from "@meetkai/mka1/models/components";

let value: FileCounts = {
  inProgress: 531702,
  completed: 842789,
  failed: 206428,
  cancelled: 668784,
  total: 640381,
};

Fields

FieldTypeRequiredDescription
inProgressnumber✔️The number of files that are currently being processed.
completednumber✔️The number of files that have been successfully processed.
failednumber✔️The number of files that have failed to process.
cancellednumber✔️The number of files that were cancelled.
totalnumber✔️The total number of files.