Interface ShardArchiveSyncStatusResponse

Archive sync checkpoint and pending operation count.

interface ShardArchiveSyncStatusResponse {
    checkpoint: {
        lastCheckpointAt: string;
        lastCheckpointHash: string;
        lastCheckpointVersion: number;
    };
    guildId: string;
    ok: boolean;
    pendingOps: number;
}

Properties

checkpoint: {
    lastCheckpointAt: string;
    lastCheckpointHash: string;
    lastCheckpointVersion: number;
}
guildId: string
ok: boolean
pendingOps: number