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

net.minidev.ovh.api.saas.csp2.OvhOfficeTenant Maven / Gradle / Ivy

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

import java.util.Date;

/**
 * Office tenant
 */
public class OvhOfficeTenant {
	/**
	 * Contact's first name
	 *
	 * canBeNull && readOnly
	 */
	public String firstName;

	/**
	 * Contact's zip code
	 *
	 * canBeNull && readOnly
	 */
	public String zipCode;

	/**
	 * Contact's last name
	 *
	 * canBeNull && readOnly
	 */
	public String lastName;

	/**
	 * Contact's address line
	 *
	 * canBeNull && readOnly
	 */
	public String address;

	/**
	 * Primary phone number
	 *
	 * canBeNull && readOnly
	 */
	public String phone;

	/**
	 * Contact's city
	 *
	 * canBeNull && readOnly
	 */
	public String city;

	/**
	 * Tenant's display name
	 *
	 * canBeNull && readOnly
	 */
	public String displayName;

	/**
	 * Internal service name
	 *
	 * canBeNull && readOnly
	 */
	public String serviceName;

	/**
	 * Creation date
	 *
	 * canBeNull && readOnly
	 */
	public Date creationDate;

	/**
	 * Tenant's status
	 *
	 * canBeNull && readOnly
	 */
	public OvhServiceStateEnum status;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy