Documentation - v1.2.0-alpha.10
    Preparing search index...

    Represents the state of a batch operation.

    interface BatchOperationStateResponse {
        retryAfter?: Date;
        state: string;
        statusMap: Record<number, number>;
        totalEntriesCount: number;
    }
    Index

    Properties

    retryAfter?: Date

    The retry-after date for the batch operation.

    state: string

    The state of the batch operation.

    statusMap: Record<number, number>

    A map of status codes to their counts.

    totalEntriesCount: number

    The total number of entries in the batch operation.