net.minidev.ovh.api.telephony.OvhContact Maven / Gradle / Ivy
 The newest version!
        
        package net.minidev.ovh.api.telephony;
import net.minidev.ovh.api.coretypes.OvhCountryEnum;
/**
 * Contact informations structure
 */
public class OvhContact {
	/**
	 * Contact zip
	 *
	 * canBeNull
	 */
	public String zip;
	/**
	 * Contact country
	 *
	 * canBeNull
	 */
	public OvhCountryEnum country;
	/**
	 * Contact firstname
	 *
	 * canBeNull
	 */
	public String firstname;
	/**
	 * Contact address
	 *
	 * canBeNull
	 */
	public String address;
	/**
	 * Contact city
	 *
	 * canBeNull
	 */
	public String city;
	/**
	 * Contact phone
	 *
	 * canBeNull
	 */
	public String phone;
	/**
	 * Contact name
	 *
	 * canBeNull
	 */
	public String name;
	/**
	 * Contact organisation
	 *
	 * canBeNull
	 */
	public String organisation;
	/**
	 * canBeNull
	 */
	public String email;
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy