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

net.minidev.ovh.api.saas.csp2.OvhOfficeSubscription 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 subscription
 */
public class OvhOfficeSubscription {
	/**
	 * Number of available licenses
	 *
	 * canBeNull && readOnly
	 */
	public Long quantity;

	/**
	 * Last update date
	 *
	 * canBeNull && readOnly
	 */
	public Date lastUpdate;

	/**
	 * Subscription's unique identifier
	 *
	 * canBeNull && readOnly
	 */
	public Long id;

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

	/**
	 * License's type id
	 *
	 * canBeNull && readOnly
	 */
	public Long licenseId;

	/**
	 * Pending task's unique identifier
	 *
	 * canBeNull && readOnly
	 */
	public Long taskPendingId;

	/**
	 * Subscription's status
	 *
	 * canBeNull && readOnly
	 */
	public String status;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy