node-ovh-ts
Version:
OVH API wrapper library for TypeScript
17 lines (14 loc) • 572 B
TypeScript
import { TelephonyRealtimeEventType } from './TelephonyRealtimeEventType.js';
import { TelephonyRealtimeEventProtocol } from './TelephonyRealtimeEventProtocol.js';
import { TelephonyRealtimeEventDirection } from './TelephonyRealtimeEventDirection.js';
type TelephonyEvent = {
calledIdentifier?: string;
callingIdentifier?: string;
dateTime?: Date;
direction?: TelephonyRealtimeEventDirection;
duration?: number;
eventType?: TelephonyRealtimeEventType;
id?: string;
protocol?: TelephonyRealtimeEventProtocol;
};
export { TelephonyEvent };