public class PaymentResponseType extends Object
Java class for PaymentResponseType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PaymentResponseType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Response" type="{}ResponseType"/>
<element name="SaleData" type="{}SaleDataType"/>
<element name="POIData" type="{}POIDataType"/>
<element name="PaymentResult" type="{}PaymentResultType" minOccurs="0"/>
<element name="LoyaltyResult" type="{}LoyaltyResultType" maxOccurs="unbounded" minOccurs="0"/>
<element name="PaymentReceipt" type="{}PaymentReceiptType" maxOccurs="unbounded" minOccurs="0"/>
<element name="CustomerOrder" type="{}CustomerOrderType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<CustomerOrderType> |
customerOrder |
protected List<LoyaltyResultType> |
loyaltyResult |
protected List<PaymentReceiptType> |
paymentReceipt |
protected PaymentResultType |
paymentResult |
protected POIDataType |
poiData |
protected ResponseType |
response |
protected SaleDataType |
saleData |
| Constructor and Description |
|---|
PaymentResponseType() |
| Modifier and Type | Method and Description |
|---|---|
List<CustomerOrderType> |
getCustomerOrder()
Gets the value of the customerOrder property.
|
List<LoyaltyResultType> |
getLoyaltyResult()
Gets the value of the loyaltyResult property.
|
List<PaymentReceiptType> |
getPaymentReceipt()
Gets the value of the paymentReceipt property.
|
PaymentResultType |
getPaymentResult()
Gets the value of the paymentResult property.
|
POIDataType |
getPOIData()
Gets the value of the poiData property.
|
ResponseType |
getResponse()
Gets the value of the response property.
|
SaleDataType |
getSaleData()
Gets the value of the saleData property.
|
void |
setPaymentResult(PaymentResultType value)
Sets the value of the paymentResult property.
|
void |
setPOIData(POIDataType value)
Sets the value of the poiData property.
|
void |
setResponse(ResponseType value)
Sets the value of the response property.
|
void |
setSaleData(SaleDataType value)
Sets the value of the saleData property.
|
protected ResponseType response
protected SaleDataType saleData
protected POIDataType poiData
protected PaymentResultType paymentResult
protected List<LoyaltyResultType> loyaltyResult
protected List<PaymentReceiptType> paymentReceipt
protected List<CustomerOrderType> customerOrder
public ResponseType getResponse()
ResponseTypepublic void setResponse(ResponseType value)
value - allowed object is
ResponseTypepublic SaleDataType getSaleData()
SaleDataTypepublic void setSaleData(SaleDataType value)
value - allowed object is
SaleDataTypepublic POIDataType getPOIData()
POIDataTypepublic void setPOIData(POIDataType value)
value - allowed object is
POIDataTypepublic PaymentResultType getPaymentResult()
PaymentResultTypepublic void setPaymentResult(PaymentResultType value)
value - allowed object is
PaymentResultTypepublic List<LoyaltyResultType> getLoyaltyResult()
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 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
LoyaltyResultType
public List<PaymentReceiptType> getPaymentReceipt()
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 paymentReceipt property.
For example, to add a new item, do as follows:
getPaymentReceipt().add(newItem);
Objects of the following type(s) are allowed in the list
PaymentReceiptType
public List<CustomerOrderType> getCustomerOrder()
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 customerOrder property.
For example, to add a new item, do as follows:
getCustomerOrder().add(newItem);
Objects of the following type(s) are allowed in the list
CustomerOrderType
Copyright © 2018. All rights reserved.