public class CardAcquisitionResponse extends Object
Java class for CardAcquisitionResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CardAcquisitionResponse">
<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="PaymentBrand" type="{}PaymentBrand" maxOccurs="unbounded" minOccurs="0"/>
<element name="PaymentInstrumentData" type="{}PaymentInstrumentData" minOccurs="0"/>
<element name="LoyaltyAccount" type="{}LoyaltyAccount" maxOccurs="unbounded" minOccurs="0"/>
<element name="CustomerOrder" type="{}CustomerOrder" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<CustomerOrder> |
customerOrder
The Customer order.
|
protected List<LoyaltyAccount> |
loyaltyAccount
The Loyalty account.
|
protected List<String> |
paymentBrand
The Payment brand.
|
protected PaymentInstrumentData |
paymentInstrumentData
The Payment instrument data.
|
protected POIData |
poiData
The Poi data.
|
protected Response |
response
The Response.
|
protected SaleData |
saleData
The Sale data.
|
| Constructor and Description |
|---|
CardAcquisitionResponse() |
| Modifier and Type | Method and Description |
|---|---|
List<CustomerOrder> |
getCustomerOrder()
Gets the value of the customerOrder property.
|
List<LoyaltyAccount> |
getLoyaltyAccount()
Gets the value of the loyaltyAccount property.
|
List<String> |
getPaymentBrand()
Gets the value of the paymentBrand property.
|
PaymentInstrumentData |
getPaymentInstrumentData()
Gets the value of the paymentInstrumentData property.
|
POIData |
getPOIData()
Gets the value of the poiData property.
|
Response |
getResponse()
Gets the value of the response property.
|
SaleData |
getSaleData()
Gets the value of the saleData property.
|
void |
setPaymentInstrumentData(PaymentInstrumentData value)
Sets the value of the paymentInstrumentData property.
|
void |
setPOIData(POIData value)
Sets the value of the poiData property.
|
void |
setResponse(Response value)
Sets the value of the response property.
|
void |
setSaleData(SaleData value)
Sets the value of the saleData property.
|
protected Response response
protected SaleData saleData
protected POIData poiData
protected PaymentInstrumentData paymentInstrumentData
protected List<LoyaltyAccount> loyaltyAccount
protected List<CustomerOrder> customerOrder
public Response getResponse()
Responsepublic void setResponse(Response value)
value - allowed object is Responsepublic SaleData getSaleData()
SaleDatapublic void setSaleData(SaleData value)
value - allowed object is SaleDatapublic POIData getPOIData()
POIDatapublic void setPOIData(POIData value)
value - allowed object is POIDatapublic List<String> getPaymentBrand()
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 paymentBrand property.
For example, to add a new item, do as follows:
getPaymentBrand().add(newItem);
Objects of the following type(s) are allowed in the list
String
public PaymentInstrumentData getPaymentInstrumentData()
PaymentInstrumentDatapublic void setPaymentInstrumentData(PaymentInstrumentData value)
value - allowed object is PaymentInstrumentDatapublic List<LoyaltyAccount> getLoyaltyAccount()
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 loyaltyAccount property.
For example, to add a new item, do as follows:
getLoyaltyAccount().add(newItem);
Objects of the following type(s) are allowed in the list
LoyaltyAccount
public List<CustomerOrder> 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
CustomerOrder
Copyright © 2022. All rights reserved.