Interface EventsClientConfiguration

[[EventsClientConfiguration]] contains necessary information to create events specific data when sending events to the ingestion service.

interface EventsClientConfiguration {
    eventsToIgnore: string[];
    type: string;
    v: number;
    getAuthenticationToken(): string;
    toJSON(): EventsIngestionMetadata;
}

Implemented by

Properties

eventsToIgnore: string[]

These events will not be sent to the ingestion service.

type: string

Type of an event. Currently, only meeting events with type = 'Meet' are supported. Each event sent to the ingestion service must have a type.

v: number

Ingestion service requires an events envelope version number.

Methods