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

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

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

/**
 * Operation on a telephony service
 */
public class OvhTask {
	/**
	 * canBeNull && readOnly
	 */
	public String serviceType;

	/**
	 * Action associated with the task
	 *
	 * canBeNull && readOnly
	 */
	public String action;

	/**
	 * Object potentially created at the end of the task
	 *
	 * canBeNull && readOnly
	 */
	public String objectCreated;

	/**
	 * Potential failure reason of the task
	 *
	 * canBeNull && readOnly
	 */
	public String message;

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

	/**
	 * Status of the task
	 *
	 * canBeNull && readOnly
	 */
	public OvhTaskStatusEnum status;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy