Package com.adyen.model.nexo
Class ReconciliationRequest
- java.lang.Object
-
- com.adyen.model.nexo.ReconciliationRequest
-
public class ReconciliationRequest extends Object
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 selectedJava 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>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>acquirerIDThe Acquirer id.protected StringpoiReconciliationIDThe Poi reconciliation id.protected ReconciliationTypereconciliationTypeThe Reconciliation.
-
Constructor Summary
Constructors Constructor Description ReconciliationRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getAcquirerID()Gets the value of the acquirerID property.StringgetPOIReconciliationID()Gets the value of the poiReconciliationID property.ReconciliationTypegetReconciliationType()Gets the value of the reconciliationType property.voidsetPOIReconciliationID(String value)Sets the value of the poiReconciliationID property.voidsetReconciliationType(ReconciliationType value)Sets the value of the reconciliationType property.
-
-
-
Field Detail
-
reconciliationType
protected ReconciliationType reconciliationType
The Reconciliation.
-
poiReconciliationID
protected String poiReconciliationID
The Poi reconciliation id.
-
-
Method Detail
-
getAcquirerID
public List<String> getAcquirerID()
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
setmethod 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
String- Returns:
- the acquirer id
-
getReconciliationType
public ReconciliationType getReconciliationType()
Gets the value of the reconciliationType property.- Returns:
- possible object is
ReconciliationType
-
setReconciliationType
public void setReconciliationType(ReconciliationType value)
Sets the value of the reconciliationType property.- Parameters:
value- allowed object isReconciliationType
-
getPOIReconciliationID
public String getPOIReconciliationID()
Gets the value of the poiReconciliationID property.- Returns:
- possible object is
String
-
-