Represents a role that is required to have participants.

A participant role can have a minimum and maximum number of participants.

0.4.0

interface RoleParticipant {
    name: string;
    description?: string;
    maximum?: number;
    minimum?: number;
}

Hierarchy (view full)

Properties

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.

maximum?: number

The maximum number of participants allowed for the role.

If not specified, the limit is not enforced. No limit is enforced if the maximum is set to 0.

The absolute maximum number of participants is 100 as defined in Role Configuration.

minimum?: number

The minimum number of participants required for the role.

If not specified, the minimum number of participants is 1 as defined in Role Configuration.