interface IEvent {
    content: IContent;
    event_id: string;
    membership?: string;
    origin_server_ts: number;
    redacts?: string;
    room_id?: string;
    sender: string;
    state_key?: string;
    txn_id?: string;
    type: string;
    unsigned: IUnsigned;
}

Properties

content: IContent
event_id: string
membership?: string
origin_server_ts: number
redacts?: string
room_id?: string
sender: string
state_key?: string
txn_id?: string
type: string
unsigned: IUnsigned