interface BoRoomAttendee {
    avatar: string;
    displayName: string;
    isInRoom: boolean;
    userGuid: string;
    userId: number;
}

Properties

avatar: string

User's avatar.

displayName: string

User's display name.

isInRoom: boolean

Whether the user is in the breakout room or not.

userGuid: string
userId: number

User ID.