Package version:

Interface CompletedSynchronizationState

Represents the completed state of the last synchronization.

interface CompletedSynchronizationState {
    endTime: Date;
    itemsSkipped: number;
    itemsUpdatesFailed: number;
    itemsUpdatesProcessed: number;
    startTime: Date;
}

Properties

endTime: Date

The end time of the last completed synchronization.

itemsSkipped: number

The number of items skipped in the last synchronization.

itemsUpdatesFailed: number

The number of item updates that failed in the last synchronization.

itemsUpdatesProcessed: number

The number of item updates successfully processed in the last synchronization.

startTime: Date

The start time of the last completed synchronization.