matrix-js-sdk
    Preparing search index...

    Interface LivekitRtcMember

    Identifies the MatrixRTC membership that a LiveKit request is made for (MSC4195).

    Note that this is not the member field of an m.rtc.member event verbatim: the homeserver knows the user ID from the access token, and the device ID is only ever claimed, never verified.

    interface LivekitRtcMember {
        claimed_device_id?: string;
        id: string;
    }
    Index
    claimed_device_id?: string

    The device ID the member claims to be using, i.e. the member.device_id of the m.rtc.member event.

    id: string

    The ID of the member within the MatrixRTC session, i.e. the member.id of the m.rtc.member event.