Represents a non-participant role in a lineup.

A titled role does not require participants.

0.4.0

interface LineupRoleCardTitled {
    defaultValue: string;
    editing: boolean;
    hidden: boolean;
    id: number;
    name: string;
    type: "Titled";
    value: string;
    description?: string;
}

Hierarchy (view full)

Properties

defaultValue: string

The default value of the role.

Maximum length is defined in Role Configuration.

This is the only way we can tell the role is a titled role.

editing: boolean

Whether the role is being edited.

hidden: boolean

Whether the role is hidden in presentation mode.

0.9.0

id: number
name: string

The name of the role.

Maximum length is defined in Role Configuration.

type

The type of the role card.

value: string

The value of the role.

Specific to titled roles, the value is the direct input of the role.

Maximum length the same with defaultValue (defined in Role Configuration).

description?: string

Description of the role.

Maximum length is defined in Role Configuration.