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

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

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

import java.util.Date;

/**
 * Diagnostic of the access
 */
public class OvhAccessDiagnostic {
	/**
	 * Available tests for this access
	 *
	 * canBeNull && readOnly
	 */
	public OvhAccessDiagnosticCapabilities capabilities;

	/**
	 * Is the modem connected ?
	 *
	 * canBeNull && readOnly
	 */
	public Boolean isModemConnected;

	/**
	 * Datime of the diagnostic
	 *
	 * canBeNull && readOnly
	 */
	public Date diagnosticTime;

	/**
	 * Test details by line
	 *
	 * canBeNull && readOnly
	 */
	public OvhLineDiagnostic[] lineDetails;

	/**
	 * Does the access ping ?
	 *
	 * canBeNull && readOnly
	 */
	public Boolean ping;

	/**
	 * Is the access active on its primary or secondary LNS
	 *
	 * canBeNull && readOnly
	 */
	public Boolean isActiveOnLns;

	/**
	 * Is there an ongoing genericIncident on the access ?
	 *
	 * canBeNull && readOnly
	 */
	public Boolean incident;

	/**
	 * Remaining number of diagnostic for this access
	 *
	 * canBeNull && readOnly
	 */
	public Long remaining;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy