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

net.minidev.ovh.api.paas.timeseries.OvhQuota Maven / Gradle / Ivy

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

import net.minidev.ovh.api.tsaas.OvhQuotaTypeEnum;

/**
 * Quota
 */
public class OvhQuota {
	/**
	 * Current value
	 *
	 * canBeNull && readOnly
	 */
	public Long current;

	/**
	 * Max allowed
	 *
	 * canBeNull && readOnly
	 */
	public Long max;

	/**
	 * Type (ie: mads, ddp, ...)
	 *
	 * canBeNull && readOnly
	 */
	public OvhQuotaTypeEnum type;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy