@fishjam-cloud/js-server-sdk - v0.19.0
    Preparing search index...

    Interface RoomConfig

    Room configuration

    RoomConfig

    interface RoomConfig {
        maxPeers?: null | number;
        public?: boolean;
        roomType?: RoomConfigRoomTypeEnum;
        videoCodec?: null | RoomConfigVideoCodecEnum;
        webhookUrl?: null | string;
    }
    Index

    Properties

    maxPeers?: null | number

    Maximum amount of peers allowed into the room

    RoomConfig

    public?: boolean

    True if livestream viewers can omit specifying a token.

    RoomConfig

    The use-case of the room. If not provided, this defaults to conference.

    RoomConfig

    videoCodec?: null | RoomConfigVideoCodecEnum

    Enforces video codec for each peer in the room

    RoomConfig

    webhookUrl?: null | string

    URL where Fishjam notifications will be sent

    RoomConfig