Interface IEventWithRoomId

interface IEventWithRoomId {
    content: IContent;
    event_id: string;
    origin_server_ts: number;
    room_id: string;
    sender: string;
    type: string;
    unsigned?: IUnsigned;
}

Hierarchy (view full)

Properties

content: IContent
event_id: string
origin_server_ts: number
room_id: string
sender: string
type: string
unsigned?: IUnsigned