Package com.adyen.model.nexo
Class PerformedTransaction
- java.lang.Object
-
- com.adyen.model.nexo.PerformedTransaction
-
public class PerformedTransaction extends Object
Definition: Result of performed transactions. -- Usage: Contains result of transaction performed without the Sale system.Java class for PerformedTransaction complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PerformedTransaction"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> <element name="SaleData" type="{}SaleData" minOccurs="0"/> <element name="POIData" type="{}POIData"/> <element name="PaymentResult" type="{}PaymentResult" minOccurs="0"/> <element name="LoyaltyResult" type="{}LoyaltyResult" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="ReversedAmount" type="{}SimpleAmountType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<LoyaltyResult>loyaltyResultThe Loyalty result.protected PaymentResultpaymentResultThe Payment result.protected POIDatapoiDataThe Poi data.protected ResponseresponseThe Response.protected BigDecimalreversedAmountThe Reversed amount.protected SaleDatasaleDataThe Sale data.
-
Constructor Summary
Constructors Constructor Description PerformedTransaction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<LoyaltyResult>getLoyaltyResult()Gets the value of the loyaltyResult property.PaymentResultgetPaymentResult()Gets the value of the paymentResult property.POIDatagetPOIData()Gets the value of the poiData property.ResponsegetResponse()Gets the value of the response property.BigDecimalgetReversedAmount()Gets the value of the reversedAmount property.SaleDatagetSaleData()Gets the value of the saleData property.voidsetPaymentResult(PaymentResult value)Sets the value of the paymentResult property.voidsetPOIData(POIData value)Sets the value of the poiData property.voidsetResponse(Response value)Sets the value of the response property.voidsetReversedAmount(BigDecimal value)Sets the value of the reversedAmount 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.
-
paymentResult
protected PaymentResult paymentResult
The Payment result.
-
loyaltyResult
protected List<LoyaltyResult> loyaltyResult
The Loyalty result.
-
reversedAmount
protected BigDecimal reversedAmount
The Reversed amount.
-
-
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
-
getPaymentResult
public PaymentResult getPaymentResult()
Gets the value of the paymentResult property.- Returns:
- possible object is
PaymentResult
-
setPaymentResult
public void setPaymentResult(PaymentResult value)
Sets the value of the paymentResult property.- Parameters:
value- allowed object isPaymentResult
-
getLoyaltyResult
public List<LoyaltyResult> getLoyaltyResult()
Gets the value of the loyaltyResult 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 loyaltyResult property.For example, to add a new item, do as follows:
getLoyaltyResult().add(newItem);Objects of the following type(s) are allowed in the list
LoyaltyResult- Returns:
- the loyalty result
-
getReversedAmount
public BigDecimal getReversedAmount()
Gets the value of the reversedAmount property.- Returns:
- possible object is
BigDecimal
-
setReversedAmount
public void setReversedAmount(BigDecimal value)
Sets the value of the reversedAmount property.- Parameters:
value- allowed object isBigDecimal
-
-