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

com.adyen.model.nexo.POIData Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy