@sendbird/calls-react-native
    Preparing search index...

    Interface RoomProperties

    interface RoomProperties {
        android_availableAudioDevices: AudioDeviceType[];
        android_currentAudioDevice: AudioDeviceType | null;
        createdAt: number;
        createdBy: string;
        customItems: Record<string, string>;
        localParticipant: ParticipantProperties | null;
        participants: ParticipantProperties[];
        remoteParticipants: ParticipantProperties[];
        roomId: string;
        state: RoomState;
        type: RoomType;
    }

    Implemented by

    Index

    Properties

    android_availableAudioDevices: AudioDeviceType[]

    Gets available audio devices.

    Android

    1.0.0

    android_currentAudioDevice: AudioDeviceType | null

    Gets current audio device.

    Android

    1.0.0

    createdAt: number

    Gets createdAt that is a timestamp of creating the room.

    1.0.0

    createdBy: string

    Gets user ID created the room.

    1.0.0

    customItems: Record<string, string>

    Gets custom items of this Room instance.

    1.0.0

    localParticipant: ParticipantProperties | null

    Gets the local participant.

    1.0.0

    participants: ParticipantProperties[]

    Gets a list of participants who entered the room.

    1.0.0

    remoteParticipants: ParticipantProperties[]

    Gets a list of remote participants who entered the room.

    1.0.0

    roomId: string

    Gets room ID.

    1.0.0

    state: RoomState

    Gets state of room.

    1.0.0

    type: RoomType

    Gets type of room.

    1.0.0