Interface ShardPresetApplyResponse

Result of applying a preset.

interface ShardPresetApplyResponse {
    guildId: string;
    ok: boolean;
    preset: string;
    results: Record<string, unknown>[];
}

Properties

guildId: string
ok: boolean
preset: string
results: Record<string, unknown>[]