interface LineupExternalBasicSlot {
    participants: null | string[];
    role: string;
    section: string;
    type: "Participant" | "Section";
}

Properties

participants: null | string[]

The participants of the slot.

role: string

The name of the slot.

section: string

The section the slot belongs to.

type: "Participant" | "Section"

The type of the slot.