net.minidev.ovh.api.sms.OvhHlrLookupNumber Maven / Gradle / Ivy
package net.minidev.ovh.api.sms;
import java.util.Date;
/**
 * Home Location Register informations. Give informations about a given cellular phone.
 */
public class OvhHlrLookupNumber {
	/**
	 * Has the MSISDN been ported from its original network
	 *
	 * canBeNull && readOnly
	 */
	public Boolean ported;
	/**
	 * Is the MSISDN valid
	 *
	 * canBeNull && readOnly
	 */
	public Boolean valid;
	/**
	 * HLR creation datetime
	 *
	 * canBeNull && readOnly
	 */
	public Date datetime;
	/**
	 * Is the MSISDN currently roaming outside its natinal network
	 *
	 * canBeNull && readOnly
	 */
	public Boolean roaming;
	/**
	 * HLR id
	 *
	 * canBeNull && readOnly
	 */
	public Long id;
	/**
	 * The {Mobile Country Code, Mobile Network Code} unique identifier
	 *
	 * canBeNull && readOnly
	 */
	public String operatorCode;
	/**
	 * MSISDN
	 *
	 * canBeNull && readOnly
	 */
	public String msisdn;
	/**
	 * Is the MSISDN currently reachable
	 *
	 * canBeNull && readOnly
	 */
	public Boolean reachable;
	/**
	 * Status of the HLR request
	 *
	 * canBeNull && readOnly
	 */
	public OvhHlrStatuses status;
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy