Represents a participant waiting to be admitted to a room.
const waitingUser: WaitingParticipant = { userId: 'user-123', displayName: 'John Doe', photoUrl: 'https://example.com/photo.jpg',}; Copy
const waitingUser: WaitingParticipant = { userId: 'user-123', displayName: 'John Doe', photoUrl: 'https://example.com/photo.jpg',};
Optional
Display name for the waiting user
Profile photo URL for the waiting user
When the user requested to join
Unique identifier for the waiting user
Represents a participant waiting to be admitted to a room.
Example