Package com.adyen.model.nexo
Class ReconciliationResponse
- java.lang.Object
-
- com.adyen.model.nexo.ReconciliationResponse
-
public class ReconciliationResponse extends Object
Definition: Content of the Reconciliation Response messageType. -- Usage: It conveys Information related to the Reconciliation transaction processed by the POI SystemJava class for ReconciliationResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ReconciliationResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> <element name="TransactionTotals" type="{}TransactionTotals" 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 StringpoiReconciliationIDThe Poi reconciliation id.protected ReconciliationTypereconciliationTypeThe Reconciliation.protected ResponseresponseThe Response.protected List<TransactionTotals>transactionTotalsThe Transaction totals.
-
Constructor Summary
Constructors Constructor Description ReconciliationResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPOIReconciliationID()Gets the value of the poiReconciliationID property.ReconciliationTypegetReconciliationType()Gets the value of the reconciliationType property.ResponsegetResponse()Gets the value of the response property.List<TransactionTotals>getTransactionTotals()Gets the value of the transactionTotals property.voidsetPOIReconciliationID(String value)Sets the value of the poiReconciliationID property.voidsetReconciliationType(ReconciliationType value)Sets the value of the reconciliationType property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
transactionTotals
protected List<TransactionTotals> transactionTotals
The Transaction totals.
-
reconciliationType
protected ReconciliationType reconciliationType
The Reconciliation.
-
poiReconciliationID
protected String poiReconciliationID
The Poi reconciliation id.
-
-
Method Detail
-
getResponse
public Response getResponse()
Gets the value of the response property.- Returns:
- possible object is
Response
-
setResponse
public void setResponse(Response value)
Sets the value of the response property.- Parameters:
value- allowed object isResponse
-
getTransactionTotals
public List<TransactionTotals> getTransactionTotals()
Gets the value of the transactionTotals 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 transactionTotals property.For example, to add a new item, do as follows:
getTransactionTotals().add(newItem);Objects of the following type(s) are allowed in the list
TransactionTotals- Returns:
- the transaction totals
-
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
-
-