net.minidev.ovh.api.xdsl.OvhIncident Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy