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

net.minidev.ovh.api.veeam.veeamenterprise.OvhTask Maven / Gradle / Ivy

The newest version!
package net.minidev.ovh.api.veeam.veeamenterprise;

import java.util.Date;
import net.minidev.ovh.api.veeamenterprise.OvhTaskStateEnum;

/**
 * Operation with the Enterprise Account
 */
public class OvhTask {
	/**
	 * Task completion date
	 *
	 * canBeNull && readOnly
	 */
	public Date endDate;

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

	/**
	 * Current progress
	 *
	 * canBeNull && readOnly
	 */
	public Long progress;

	/**
	 * Current Task state
	 *
	 * canBeNull && readOnly
	 */
	public OvhTaskStateEnum state;

	/**
	 * Task id
	 *
	 * canBeNull && readOnly
	 */
	public Long taskId;

	/**
	 * Task creation date
	 *
	 * canBeNull && readOnly
	 */
	public Date startDate;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy