com.adyen.model.nexo.PredefinedContent Maven / Gradle / Ivy
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: Reference of a predefined messageType to display or print. -- Usage: It conveys Information related to the predefined messageType
*
* Java class for PredefinedContent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PredefinedContent">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="ReferenceID" use="required" type="{}ReferenceID" />
* <attribute name="Language" type="{}ISOLanguage2A" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PredefinedContent")
public class PredefinedContent {
/**
* The Reference id.
*/
@XmlAttribute(name = "ReferenceID", required = true)
protected String referenceID;
/**
* The Language.
*/
@XmlAttribute(name = "Language")
protected String language;
/**
* Gets the value of the referenceID property.
*
* @return possible object is {@link String }
*/
public String getReferenceID() {
return referenceID;
}
/**
* Sets the value of the referenceID property.
*
* @param value allowed object is {@link String }
*/
public void setReferenceID(String value) {
this.referenceID = value;
}
/**
* Gets the value of the language property.
*
* @return possible object is {@link String }
*/
public String getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value allowed object is {@link String }
*/
public void setLanguage(String value) {
this.language = value;
}
}