UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

20 lines (17 loc) 936 B
import { TelephonyCallDiagnosticCallQuality } from './TelephonyCallDiagnosticCallQuality.js'; import { TelephonyCallDiagnosticCdrs } from './TelephonyCallDiagnosticCdrs.js'; import { TelephonyCallDiagnosticSip } from './TelephonyCallDiagnosticSip.js'; import { TelephonyCallDiagnosticReporting } from './TelephonyCallDiagnosticReporting.js'; import { TelephonyCallDiagnosticStatusEnum } from './TelephonyCallDiagnosticStatusEnum.js'; import './TelephonyCallDiagnosticCodecEnum.js'; import './TelephonyCallDiagnosticCdrsBasic.js'; import './TelephonyReleaseLocationEnum.js'; import './TelephonyCallDiagnosticCauseEnum.js'; type TelephonyCallDiagnostics = { callQuality?: TelephonyCallDiagnosticCallQuality[]; cdrs?: TelephonyCallDiagnosticCdrs[]; reporting?: TelephonyCallDiagnosticReporting[]; sip?: TelephonyCallDiagnosticSip[]; status?: TelephonyCallDiagnosticStatusEnum; }; export { TelephonyCallDiagnostics };