Interface ShardAssignmentsResponse

Map of user IDs to their assigned net IDs.

interface ShardAssignmentsResponse {
    assignments: Record<string, number[]>;
    guildId: string;
    ok: boolean;
}

Properties

assignments: Record<string, number[]>
guildId: string
ok: boolean