com.adyen.model.nexo.SensitiveMobileData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
package com.adyen.model.nexo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Sensitive information related to the mobile phone. -- Usage: This data structure could be CMS protected (EnvelopedData). In this case the data structure SensitiveMobileData is replaced by the data structure ProtectedMobileData of type ContentInformationType. When this data is protected, the exact
*
* Java class for SensitiveMobileData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SensitiveMobileData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="MSISDN" use="required" type="{}MSISDN" />
* <attribute name="IMSI" type="{}IMSI" />
* <attribute name="IMEI" type="{}IMEI" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SensitiveMobileData")
public class SensitiveMobileData {
/**
* The Msisdn.
*/
@XmlAttribute(name = "MSISDN", required = true)
protected String msisdn;
/**
* The Imsi.
*/
@XmlAttribute(name = "IMSI")
protected String imsi;
/**
* The Imei.
*/
@XmlAttribute(name = "IMEI")
protected String imei;
/**
* Gets the value of the msisdn property.
*
* @return possible object is {@link String }
*/
public String getMSISDN() {
return msisdn;
}
/**
* Sets the value of the msisdn property.
*
* @param value allowed object is {@link String }
*/
public void setMSISDN(String value) {
this.msisdn = value;
}
/**
* Gets the value of the imsi property.
*
* @return possible object is {@link String }
*/
public String getIMSI() {
return imsi;
}
/**
* Sets the value of the imsi property.
*
* @param value allowed object is {@link String }
*/
public void setIMSI(String value) {
this.imsi = value;
}
/**
* Gets the value of the imei property.
*
* @return possible object is {@link String }
*/
public String getIMEI() {
return imei;
}
/**
* Sets the value of the imei property.
*
* @param value allowed object is {@link String }
*/
public void setIMEI(String value) {
this.imei = value;
}
}