interface IOperationProgress {
    entryId?: number;
    errors?: OperationErrorItem[];
    operationToken?: string;
    operationType?: string;
    percentComplete?: number;
    redirectUri?: string;
    startTimestamp?: Date;
    status?: OperationStatus;
    statusTimestamp?: Date;
}

Implemented by

Properties

entryId?: number

The ID of the entry affected (e.g. created or modified) by the execution of the associated operation.

The list of errors occurred during the execution of the associated operation.

operationToken?: string

The operation token of the operation associated with this OperationProgress.

operationType?: string

The type of the operation associated with this OperationProgress.

percentComplete?: number

Determines what percentage of the execution of the associated operation is completed.

redirectUri?: string

The URI which can be used (via api call) to access the result(s) of the associated operation.

startTimestamp?: Date

The timestamp representing when the associated operation's execution is started.

The status of the operation associated with this OperationProgress.

statusTimestamp?: Date

The timestamp representing the last time when the associated task's status has changed.