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

net.minidev.ovh.api.xdsl.OvhTask Maven / Gradle / Ivy

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

import java.util.Date;

/**
 * Describes the current status of a task
 */
public class OvhTask {
	/**
	 * canBeNull && readOnly
	 */
	public Date updateDate;

	/**
	 * canBeNull && readOnly
	 */
	public String function;

	/**
	 * Date when the action will start
	 *
	 * canBeNull && readOnly
	 */
	public Date todoDate;

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

	/**
	 * canBeNull && readOnly
	 */
	public OvhTaskStatusEnum status;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy