Interface IEvent

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

Properties

age?: number

Deprecated

in favour of origin_server_ts

content: IContent
event_id: string
membership?: string
origin_server_ts: number
prev_content?: IContent

Deprecated

in favour of unsigned.prev_content

redacts?: string
room_id?: string
sender: string
state_key?: string
txn_id?: string
type: string
unsigned: IUnsigned
user_id?: string

Deprecated

in favour of sender

Generated using TypeDoc