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

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

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

/**
 * Phone book contact
 */
public class OvhPhonebookContact {
	/**
	 * Contact surname
	 *
	 * canBeNull && readOnly
	 */
	public String surname;

	/**
	 * Home mobile phone number of the contact
	 *
	 * canBeNull && readOnly
	 */
	public String homeMobile;

	/**
	 * Home landline phone number of the contact
	 *
	 * canBeNull && readOnly
	 */
	public String homePhone;

	/**
	 * Contact name
	 *
	 * canBeNull && readOnly
	 */
	public String name;

	/**
	 * Landline phone office number of the contact
	 *
	 * canBeNull && readOnly
	 */
	public String workPhone;

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

	/**
	 * Mobile phone office number of the contact
	 *
	 * canBeNull && readOnly
	 */
	public String workMobile;

	/**
	 * Group name of the phonebook
	 *
	 * canBeNull && readOnly
	 */
	public String group;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy