Interface CustomerSearchIndexingStatusResponse

interface CustomerSearchIndexingStatusResponse {
    lastModifiedAt?: string;
    retryCount?: number;
    startedAt?: string;
    states?: CustomerIndexingProgress;
    status: string;
}

Properties

lastModifiedAt?: string

Time when the status was last modified.

retryCount?: number

Indicates how many times the system tried to start indexing after failed attempts. The counter is set to null after an indexing finished successfully.

startedAt?: string

Date and time (UTC) when the last indexing started.

Progress of indexing. Only available when indexing is in progress.

status: string

Current status of indexing the Customer Search.