Interface ISpaceParticipant

The details of a single space participant.

interface ISpaceParticipant {
    avatarUrl?: string;
    displayName?: string;
    id?: string;
    isMutedByAdmin?: boolean;
    isMutedByGuest?: boolean;
    isVerified?: boolean;
    screenName?: string;
}

Properties

avatarUrl?: string

The avatar URL of the user.

displayName?: string

The display name of the user.

id?: string

The rest id of the user.

isMutedByAdmin?: boolean

Whether the user is muted by admins.

isMutedByGuest?: boolean

Whether the user is muted by guests.

isVerified?: boolean

Whether the user is verified.

screenName?: string

The screen name of the user.