interface MSC3575RoomData {
    highlight_count?: number;
    initial?: boolean;
    invite_state?: IStateEvent[];
    invited_count?: number;
    is_dm?: boolean;
    joined_count?: number;
    limited?: boolean;
    name: string;
    notification_count?: number;
    num_live?: number;
    prev_batch?: string;
    required_state: IStateEvent[];
    timeline: (IRoomEvent | IStateEvent)[];
}

Properties

highlight_count?: number
initial?: boolean
invite_state?: IStateEvent[]
invited_count?: number
is_dm?: boolean
joined_count?: number
limited?: boolean
name: string
notification_count?: number
num_live?: number
prev_batch?: string
required_state: IStateEvent[]
timeline: (IRoomEvent | IStateEvent)[]