interface InteractionStatusUpdate {
    event_id?: string;
    event_type?: "interaction.status_update";
    interaction_id?: string;
    status?:
        | "failed"
        | "completed"
        | "cancelled"
        | "in_progress"
        | "requires_action";
}

Properties

event_id?: string

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

event_type?: "interaction.status_update"
interaction_id?: string
status?:
    | "failed"
    | "completed"
    | "cancelled"
    | "in_progress"
    | "requires_action"