The model for an import operation.

ImportModel

interface ImportModel {
    createdAt?: Date;
    error?: string;
    finishedAt?: Date;
    id?: string;
    percentComplete?: number;
    recordsImported?: number;
    status?: string;
    uri?: string;
}

Properties

createdAt?: Date

The start time of the import operation.

ImportModel

error?: string

The error message if the import process failed.

ImportModel

finishedAt?: Date

The end time of the import operation.

ImportModel

id?: string

Unique identifier for the import operation.

ImportModel

percentComplete?: number

The progress made by the operation, as a percentage.

ImportModel

recordsImported?: number

The number of records successfully imported.

ImportModel

status?: string

The status of the operation. Possible values: Pending, InProgress, Failed, Completed, or Cancelled.

ImportModel

uri?: string

The URI from where the data is imported.

ImportModel