Interface ShardArchiveUpsertResponse

Result of an archive create or update operation.

interface ShardArchiveUpsertResponse {
    action: "created" | "updated";
    entry: ArchiveEntry;
    guildId: string;
    ok: boolean;
}

Properties

Properties

action: "created" | "updated"
guildId: string
ok: boolean