matrix-js-sdk
    Preparing search index...

    Type Alias LivekitDelegateDelayedLeaveRequest

    The body of a request to the LiveKit delegate_delayed_leave endpoint (MSC4195).

    Declared as a type alias rather than an interface so that it can be passed to the widget API (MSC4533), which expects request data to be assignable to an index signature.

    type LivekitDelegateDelayedLeaveRequest = {
        delay_id: string;
        member: LivekitRtcMember;
        room_id: string;
        slot_id: string;
        url: string;
    }
    Index
    delay_id: string

    The delay ID of the delayed leave event to hand over to the homeserver.

    The MatrixRTC membership the delayed leave event belongs to.

    room_id: string

    The room ID of the Matrix room the m.rtc.member event is in.

    slot_id: string

    The slot ID from the m.rtc.member event.

    url: string

    The WebSocket URL of the LiveKit SFU that we are connected to.