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

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

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

import java.util.Date;

/**
 * Detected incident
 */
public class OvhIncident {
	/**
	 * Estimated end date
	 *
	 * canBeNull && readOnly
	 */
	public Date endDate;

	/**
	 * Operator
	 *
	 * canBeNull && readOnly
	 */
	public OvhOperatorTypeEnum[] operators;

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

	/**
	 * Department list
	 *
	 * canBeNull && readOnly
	 */
	public String[] departments;

	/**
	 * ID of the incident
	 *
	 * canBeNull && readOnly
	 */
	public Long id;

	/**
	 * Estimated start date
	 *
	 * canBeNull && readOnly
	 */
	public Date creationDate;

	/**
	 * NRA list
	 *
	 * canBeNull && readOnly
	 */
	public String[] nra;

	/**
	 * Task ID on travaux.ovh.com
	 *
	 * canBeNull && readOnly
	 */
	public Long taskId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy