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

net.minidev.ovh.api.xdsl.linediagnostic.OvhLineDetails Maven / Gradle / Ivy

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

import net.minidev.ovh.api.xdsl.OvhDslTypeEnum;

/**
 * Line informations
 */
public class OvhLineDetails {
	/**
	 * line number
	 *
	 * canBeNull
	 */
	public String number;

	/**
	 * address of the access
	 *
	 * canBeNull
	 */
	public String address;

	/**
	 * access name
	 *
	 * canBeNull
	 */
	public String accessName;

	/**
	 * is GTR access or not
	 *
	 * canBeNull
	 */
	public Boolean gtr;

	/**
	 * dsl connexion type for the line
	 *
	 * canBeNull
	 */
	public OvhDslTypeEnum lineType;

	/**
	 * Line length in meters
	 *
	 * canBeNull
	 */
	public Long length;

	/**
	 * custom access description
	 *
	 * canBeNull
	 */
	public String description;

	/**
	 * DSLAM is synchronized or not
	 *
	 * canBeNull
	 */
	public Boolean dslamIsSynchronized;

	/**
	 * customer phone number for contact
	 *
	 * canBeNull
	 */
	public String contactPhone;

	/**
	 * NRA name
	 *
	 * canBeNull
	 */
	public String nra;

	/**
	 * provider for internet connexion
	 *
	 * canBeNull
	 */
	public OvhProviderEnum operator;

	/**
	 * cables sections details
	 *
	 * canBeNull
	 */
	public OvhSection[] sections;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy