Hiyve Components - v1.0.0
    Preparing search index...

    Interface WaitingParticipant

    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',
    };
    interface WaitingParticipant {
        displayName?: string;
        photoUrl?: string;
        requestedAt?: Date;
        userId: string;
    }
    Index

    Properties

    displayName?: string

    Display name for the waiting user

    photoUrl?: string

    Profile photo URL for the waiting user

    requestedAt?: Date

    When the user requested to join

    userId: string

    Unique identifier for the waiting user