import { OvhPabxHuntingLiveAgentStatusEnum } from './OvhPabxHuntingLiveAgentStatusEnum';
/** Live statistics of the queue */
export interface OvhPabxHuntingAgentLiveStatus {
    /** The number of calls this agent took on the current day */
    answeredCalls: number;
    /** Last status change date */
    lastStatusChange: string;
    /** Current status of the agent */
    status: OvhPabxHuntingLiveAgentStatusEnum;
    /** The total duration in seconds of the calls this agent took on the current day */
    totalCallDuration: number;
}
//# sourceMappingURL=OvhPabxHuntingAgentLiveStatus.d.ts.map