Interface NormalizedCallHangupUser

The remote caller (user) hung up the call.

interface NormalizedCallHangupUser {
    eventId: string;
    providerCallId: string;
    timestamp: number;
    kind: "call-hangup-user";
}

Hierarchy

  • NormalizedEventBase
    • NormalizedCallHangupUser

Properties

eventId: string

Provider-assigned event ID for idempotency.

providerCallId: string

Provider-assigned call ID.

timestamp: number

Unix timestamp (ms).

kind: "call-hangup-user"