interface InteractionCreatedEvent {
    event_id?: string;
    event_type: "interaction.created";
    interaction: InteractionSseEventInteraction;
    metadata?: StreamMetadata;
}

Hierarchy

  • InteractionCreatedEvent$
    • InteractionCreatedEvent

Properties

event_id?: string

The event_id token to be used to resume the interaction stream, from

this event.

event_type: "interaction.created"

Partial interaction resource emitted by interaction lifecycle SSE events.

Streaming lifecycle payloads may omit fields that are only available on full non-streaming Interaction responses.

metadata?: StreamMetadata