com.adyen.model.nexo.POIData 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Data related to the POI System. -- Usage: In the Message Response, identification of the POI transaction.
*
* Java class for POIData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="POIData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="POITransactionID" type="{}TransactionIdentification"/>
* </sequence>
* <attribute name="POIReconciliationID" type="{}POIReconciliationID" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "POIData", propOrder = {
"poiTransactionID"
})
public class POIData {
/**
* The Poi transaction id.
*/
@XmlElement(name = "POITransactionID", required = true)
protected TransactionIdentification poiTransactionID;
/**
* The Poi reconciliation id.
*/
@XmlAttribute(name = "POIReconciliationID")
protected String poiReconciliationID;
/**
* Gets the value of the poiTransactionID property.
*
* @return possible object is {@link TransactionIdentification }
*/
public TransactionIdentification getPOITransactionID() {
return poiTransactionID;
}
/**
* Sets the value of the poiTransactionID property.
*
* @param value allowed object is {@link TransactionIdentification }
*/
public void setPOITransactionID(TransactionIdentification value) {
this.poiTransactionID = value;
}
/**
* Gets the value of the poiReconciliationID property.
*
* @return possible object is {@link String }
*/
public String getPOIReconciliationID() {
return poiReconciliationID;
}
/**
* Sets the value of the poiReconciliationID property.
*
* @param value allowed object is {@link String }
*/
public void setPOIReconciliationID(String value) {
this.poiReconciliationID = value;
}
}