Interface ShardBulkAssignmentResult

Result of a bulk assignment with per-user outcomes.

interface ShardBulkAssignmentResult {
    guildId: string;
    ok: boolean;
    results: { action: string; netId: number; ok: boolean; userId: string }[];
}

Properties

Properties

guildId: string
ok: boolean
results: { action: string; netId: number; ok: boolean; userId: string }[]