Represents a participant who is able to perform roles in the event. An entity can be a group of members, guests, or anonymous participants.

0.4.0

interface LineupParticipantEntity {
    id: number;
    label: string;
    name: string;
    participants: (string | ParticipantPerson)[];
    type: "Entity";
    value: string;
}

Hierarchy (view full)

Properties

id: number
label: string

The label of the participant.

name: string
participants: (string | ParticipantPerson)[]
type

The type of the participant.

value: string

The value of the participant.