Interface IRoomDirectoryOptions

interface IRoomDirectoryOptions {
    filter?: {
        generic_search_term?: string;
        room_types?: (null | RoomType)[];
    };
    include_all_networks?: boolean;
    limit?: number;
    server?: string;
    since?: string;
    third_party_instance_id?: string;
}

Properties

filter?: {
    generic_search_term?: string;
    room_types?: (null | RoomType)[];
}

Filter parameters

include_all_networks?: boolean
limit?: number

Maximum number of entries to return

server?: string

The remote server to query for the room list. Optional. If unspecified, get the local homeserver's public room list.

since?: string

Token to paginate from

third_party_instance_id?: string