Interface ISpaceParticipants

The participants of a Space grouped by roles.

interface ISpaceParticipants {
    admins: ISpaceParticipant[];
    listeners: ISpaceParticipant[];
    speakers: ISpaceParticipant[];
    total?: number;
}

Properties

The list of admins in the space.

listeners: ISpaceParticipant[]

The list of listeners in the space.

speakers: ISpaceParticipant[]

The list of speakers in the space.

total?: number

The total count of participants.