RBWCM-SDK Documentation - v1.1.0
    Preparing search index...

    Interface DraftTeamPayload

    Represents the state of a team during the draft phase.

    interface DraftTeamPayload {
        captainId: number | null;
        index: number;
        players: {
            discordId: string;
            ign: string;
            isCaptain: boolean;
            userId: number;
        }[];
    }
    Index

    Properties

    captainId: number | null
    index: number
    players: { discordId: string; ign: string; isCaptain: boolean; userId: number }[]