/** Live statistics of the queue */
export interface OvhPabxHuntingQueueLiveStatistics {
    /** Total of calls answered */
    callsAnswered: number;
    /** Total of calls lost */
    callsLost: number;
    /** Total of calls */
    callsTotal: number;
    /** Last reset datetime of queue's statistics */
    lastReset: string;
    /** Total call duration in seconds */
    totalCallDuration: number;
    /** Total waiting duration in seconds */
    totalWaitingDuration: number;
}
//# sourceMappingURL=OvhPabxHuntingQueueLiveStatistics.d.ts.map