com.adyen.model.nexo.ReconciliationRequest 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;
import java.util.ArrayList;
import java.util.List;
/**
* Definition: Content of the Reconciliation Request messageType. -- Usage: It conveys Information related to the Reconciliation requested by the Sale System: Type of reconciliation (with or without closure of the reconciliation time period) The Acquirers identification if they are involved and could be selected
*
* Java class for ReconciliationRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ReconciliationRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AcquirerID" type="{}AcquirerID" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="Reconciliation" use="required" type="{}ReconciliationType" />
* <attribute name="POIReconciliationID" type="{}POIReconciliationID" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReconciliationRequest", propOrder = {
"acquirerID"
})
public class ReconciliationRequest {
/**
* The Acquirer id.
*/
@XmlElement(name = "AcquirerID")
protected List acquirerID;
/**
* The Reconciliation.
*/
@XmlAttribute(name = "ReconciliationType", required = true)
protected ReconciliationType reconciliationType;
/**
* The Poi reconciliation id.
*/
@XmlAttribute(name = "POIReconciliationID")
protected String poiReconciliationID;
/**
* Gets the value of the acquirerID property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the acquirerID property.
*
*
* For example, to add a new item, do as follows:
*
* getAcquirerID().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
* @return the acquirer id
*/
public List getAcquirerID() {
if (acquirerID == null) {
acquirerID = new ArrayList<>();
}
return this.acquirerID;
}
/**
* Gets the value of the reconciliationType property.
*
* @return possible object is {@link ReconciliationType }
*/
public ReconciliationType getReconciliationType() {
return reconciliationType;
}
/**
* Sets the value of the reconciliationType property.
*
* @param value allowed object is {@link ReconciliationType }
*/
public void setReconciliationType(ReconciliationType value) {
this.reconciliationType = 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;
}
}