Represents a role that does not require participants.

A titled role can be any input that requires a title.

Role Name: Lunch Break
Role Value: 1 hour

0.4.0

interface RoleTitled {
    defaultValue: string;
    name: 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.

name: string

The name of the role.

Maximum length is defined in Role Configuration.

description?: string

Description of the role.

Maximum length is defined in Role Configuration.