Package com.adyen.model.nexo
Class StoredValueResponse
- java.lang.Object
-
- com.adyen.model.nexo.StoredValueResponse
-
public class StoredValueResponse extends Object
Definition: Content of the Stored Value Response messageType. -- Usage: It conveys Information related to the Stored Value transaction processed by the POI System.Java class for StoredValueResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="StoredValueResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> <element name="SaleData" type="{}SaleData"/> <element name="POIData" type="{}POIData"/> <element name="StoredValueResult" type="{}StoredValueResult" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<PaymentReceipt>paymentReceiptThe Payment receipt.protected POIDatapoiDataThe Poi data.protected ResponseresponseThe Response.protected SaleDatasaleDataThe Sale data.protected List<StoredValueResult>storedValueResultThe Stored value result.
-
Constructor Summary
Constructors Constructor Description StoredValueResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PaymentReceipt>getPaymentReceipt()POIDatagetPOIData()Gets the value of the poiData property.ResponsegetResponse()Gets the value of the response property.SaleDatagetSaleData()Gets the value of the saleData property.List<StoredValueResult>getStoredValueResult()Gets the value of the storedValueResult property.voidsetPaymentReceipt(List<PaymentReceipt> paymentReceipt)voidsetPOIData(POIData value)Sets the value of the poiData property.voidsetResponse(Response value)Sets the value of the response property.voidsetSaleData(SaleData value)Sets the value of the saleData property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
saleData
protected SaleData saleData
The Sale data.
-
poiData
protected POIData poiData
The Poi data.
-
storedValueResult
protected List<StoredValueResult> storedValueResult
The Stored value result.
-
paymentReceipt
protected List<PaymentReceipt> paymentReceipt
The Payment receipt.
-
-
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
-
getSaleData
public SaleData getSaleData()
Gets the value of the saleData property.- Returns:
- possible object is
SaleData
-
setSaleData
public void setSaleData(SaleData value)
Sets the value of the saleData property.- Parameters:
value- allowed object isSaleData
-
getPOIData
public POIData getPOIData()
Gets the value of the poiData property.- Returns:
- possible object is
POIData
-
setPOIData
public void setPOIData(POIData value)
Sets the value of the poiData property.- Parameters:
value- allowed object isPOIData
-
getStoredValueResult
public List<StoredValueResult> getStoredValueResult()
Gets the value of the storedValueResult 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 storedValueResult property.For example, to add a new item, do as follows:
getStoredValueResult().add(newItem);Objects of the following type(s) are allowed in the list
StoredValueResult- Returns:
- the stored value result
-
getPaymentReceipt
public List<PaymentReceipt> getPaymentReceipt()
-
setPaymentReceipt
public void setPaymentReceipt(List<PaymentReceipt> paymentReceipt)
-
-