InteractionEvent: Event & {
    interactionName: string;
    eventStatus?: string;
    correlationId?: string;
}

Attributes shared by events with an interaction

Type declaration

  • interactionName: string

    The user interaction being described by the event.

  • Optional eventStatus?: string

    The resulting status of the event, either success or failure. This is expected to be populated in events that are sent after a response from the server (e.g., Search, which requires number of search results).

  • Optional correlationId?: string

    Identifier that links multiple events.