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

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

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

import java.util.Date;

/**
 * Conference service
 */
public class OvhConferenceParticipants {
	/**
	 * The caller number of the participant
	 *
	 * canBeNull && readOnly
	 */
	public String callerNumber;

	/**
	 * Whether or not the participant can talk in the conference
	 *
	 * canBeNull && readOnly
	 */
	public Boolean speak;

	/**
	 * Whether or not the participant is talking
	 *
	 * canBeNull && readOnly
	 */
	public Boolean talking;

	/**
	 * The arrival datetime of the participant in the conference.
	 *
	 * canBeNull && readOnly
	 */
	public Date arrivalDateTime;

	/**
	 * The id of the participant
	 *
	 * canBeNull && readOnly
	 */
	public Long id;

	/**
	 * Whether or not the participant is active in the room
	 *
	 * canBeNull && readOnly
	 */
	public Boolean floor;

	/**
	 * Whether or not the participant can hear the conference
	 *
	 * canBeNull && readOnly
	 */
	public Boolean hear;

	/**
	 * The current level of the participant audio transmission
	 *
	 * canBeNull && readOnly
	 */
	public Long energy;

	/**
	 * The caller name of the participant
	 *
	 * canBeNull && readOnly
	 */
	public String callerName;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy