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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;
import net.minidev.ovh.api.complextype.OvhRange;

/**
 * Phone configuration property
 */
public class OvhPhoneConfigurationProperty {
	/**
	 * Default property value
	 *
	 * canBeNull
	 */
	@JsonProperty("default")
	public String _default;

	/**
	 * Max string chars
	 *
	 * canBeNull
	 */
	public Long maxlength;

	/**
	 * Provisioning level
	 *
	 * canBeNull
	 */
	public OvhPhoneConfigurationLevelEnum level;

	/**
	 * The property name
	 *
	 * canBeNull
	 */
	public String name;

	/**
	 * Property description
	 *
	 * canBeNull
	 */
	public String description;

	/**
	 * Range property value
	 *
	 * canBeNull
	 */
	public OvhRange rangeValue;

	/**
	 * Provisioning type
	 *
	 * canBeNull
	 */
	public OvhPhoneConfigurationTypeEnum type;

	/**
	 * Current property value
	 *
	 * canBeNull
	 */
	public String value;

	/**
	 * Property value possibilities
	 *
	 * canBeNull
	 */
	@JsonProperty("enum")
	public String[] _enum;

	/**
	 * The property group
	 *
	 * canBeNull
	 */
	public String group;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy