Interface iRefreshStatusSuccessResponse<T>

interface iRefreshStatusSuccessResponse<T> {
    errorDocs: iQueueDoc<T>[];
    inQueue: boolean;
    refreshDoc: iRefreshDoc<T>;
}

Type Parameters

Implemented by

Properties

errorDocs: iQueueDoc<T>[]

Array of error documents corresponding to the collection.

inQueue: boolean

Boolean indicating if the collection is currently in the queue.

refreshDoc: iRefreshDoc<T>

The status information corresponding to the collection.