UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

15 lines (12 loc) 392 B
import { TelephonyConferenceHistoryEvent } from './TelephonyConferenceHistoryEvent.js'; type TelephonyConferenceHistory = { countConnections?: number; countParticipants?: number; dateBegin?: Date; dateEnd?: Date; duration?: number; events?: TelephonyConferenceHistoryEvent[]; id?: number; recordUrl?: string | null; }; export { TelephonyConferenceHistory };