Interface IStateEventWithRoomId

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

Hierarchy (view full)

Properties

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