UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

27 lines 976 B
import { OvhPabxHuntingLiveCallsStateEnum } from './OvhPabxHuntingLiveCallsStateEnum'; /** Live statistics of the queue */ export interface OvhPabxHuntingQueueLiveCalls { /** Name or number of the agent who answered the call */ agent: string; /** Answer date of the call */ answered?: string; /** Begin date of the call */ begin: string; /** Name of the caller (or anonymous if unknown) */ callerIdName: string; /** Phone number of the caller (or anonymous if unknown) */ callerIdNumber: string; /** Phone number called (in case of an outgoing call) */ destinationNumber: string; /** End date of the call */ end?: string; /** */ id: number; /** Whether or not the call is on hold */ onHold?: boolean; /** Name of the queue of the call */ queue: string; /** Current state of the call */ state: OvhPabxHuntingLiveCallsStateEnum; } //# sourceMappingURL=OvhPabxHuntingQueueLiveCalls.d.ts.map