Interface NormalizedCallRinging

The destination phone is ringing.

interface NormalizedCallRinging {
    eventId: string;
    providerCallId: string;
    timestamp: number;
    kind: "call-ringing";
}

Hierarchy

  • NormalizedEventBase
    • NormalizedCallRinging

Properties

eventId: string

Provider-assigned event ID for idempotency.

providerCallId: string

Provider-assigned call ID.

timestamp: number

Unix timestamp (ms).

kind: "call-ringing"