Interface NormalizedSpeechStart

The caller started speaking (voice activity detection trigger).

interface NormalizedSpeechStart {
    eventId: string;
    providerCallId: string;
    timestamp: number;
    kind: "speech-start";
}

Hierarchy

  • NormalizedEventBase
    • NormalizedSpeechStart

Properties

eventId: string

Provider-assigned event ID for idempotency.

providerCallId: string

Provider-assigned call ID.

timestamp: number

Unix timestamp (ms).

kind: "speech-start"