All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minidev.ovh.api.telephony.OvhOvhPabxHuntingQueueLiveCalls Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package net.minidev.ovh.api.telephony;

import java.util.Date;

/**
 * Live statistics of the queue
 */
public class OvhOvhPabxHuntingQueueLiveCalls {
	/**
	 * Phone number of the caller (or anonymous if unknown)
	 *
	 * canBeNull && readOnly
	 */
	public String callerIdNumber;

	/**
	 * Name or number of the agent who answered the call
	 *
	 * canBeNull && readOnly
	 */
	public String agent;

	/**
	 * Whether or not the call is on hold
	 *
	 * canBeNull && readOnly
	 */
	public Boolean onHold;

	/**
	 * Answer date of the call
	 *
	 * canBeNull && readOnly
	 */
	public Date answered;

	/**
	 * End date of the call
	 *
	 * canBeNull && readOnly
	 */
	public Date end;

	/**
	 * Name of the caller (or anonymous if unknown)
	 *
	 * canBeNull && readOnly
	 */
	public String callerIdName;

	/**
	 * Current state of the call
	 *
	 * canBeNull && readOnly
	 */
	public OvhOvhPabxHuntingLiveCallsStateEnum state;

	/**
	 * canBeNull && readOnly
	 */
	public Long id;

	/**
	 * Begin date of the call
	 *
	 * canBeNull && readOnly
	 */
	public Date begin;

	/**
	 * Name of the queue of the call
	 *
	 * canBeNull && readOnly
	 */
	public String queue;

	/**
	 * Phone number called (in case of an outgoing call)
	 *
	 * canBeNull && readOnly
	 */
	public String destinationNumber;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy