Interface EventData

[[EventData]] describes an event information.

interface EventData {
    attributes?: { [key: string]: string | number };
    name: EventName;
    ts: number;
}

Properties

Properties

attributes?: { [key: string]: string | number }

Event attributes to provide extra information with an event.

name: EventName

Name of an event with the [[MeetingHistoryState]] type. For example, "signalingDropped", "meetingReconnected", "meetingStartRequested".

ts: number

Event generated timestamp in milliseconds.