All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.nexo.CardAcquisitionResponse Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;


/**
 * Definition: Content of the Card Acquisition Response messageType. -- Usage: It conveys Information related to the payment and loyalty cards read and processed by the POI System and entered by the Customer:As for the Payment request, the result of the CardAcquisition and the identification of the transaction.One
 *
 * 

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>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CardAcquisitionResponse", propOrder = { "response", "saleData", "poiData", "paymentBrand", "paymentInstrumentData", "loyaltyAccount", "customerOrder" }) public class CardAcquisitionResponse { /** * The Response. */ @XmlElement(name = "Response", required = true) protected Response response; /** * The Sale data. */ @XmlElement(name = "SaleData", required = true) protected SaleData saleData; /** * The Poi data. */ @XmlElement(name = "POIData", required = true) protected POIData poiData; /** * The Payment brand. */ @XmlElement(name = "PaymentBrand") protected List paymentBrand; /** * The Payment instrument data. */ @XmlElement(name = "PaymentInstrumentData") protected PaymentInstrumentData paymentInstrumentData; /** * The Loyalty account. */ @XmlElement(name = "LoyaltyAccount") protected List loyaltyAccount; /** * The Customer order. */ @XmlElement(name = "CustomerOrder") protected List customerOrder; /** * Gets the value of the response property. * * @return possible object is {@link Response } */ public Response getResponse() { return response; } /** * Sets the value of the response property. * * @param value allowed object is {@link Response } */ public void setResponse(Response value) { this.response = value; } /** * Gets the value of the saleData property. * * @return possible object is {@link SaleData } */ public SaleData getSaleData() { return saleData; } /** * Sets the value of the saleData property. * * @param value allowed object is {@link SaleData } */ public void setSaleData(SaleData value) { this.saleData = value; } /** * Gets the value of the poiData property. * * @return possible object is {@link POIData } */ public POIData getPOIData() { return poiData; } /** * Sets the value of the poiData property. * * @param value allowed object is {@link POIData } */ public void setPOIData(POIData value) { this.poiData = value; } /** * Gets the value of the paymentBrand 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 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 * {@link String } * * @return the payment brand */ public List getPaymentBrand() { if (paymentBrand == null) { paymentBrand = new ArrayList(); } return this.paymentBrand; } /** * Gets the value of the paymentInstrumentData property. * * @return possible object is {@link PaymentInstrumentData } */ public PaymentInstrumentData getPaymentInstrumentData() { return paymentInstrumentData; } /** * Sets the value of the paymentInstrumentData property. * * @param value allowed object is {@link PaymentInstrumentData } */ public void setPaymentInstrumentData(PaymentInstrumentData value) { this.paymentInstrumentData = value; } /** * Gets the value of the loyaltyAccount 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 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 * {@link LoyaltyAccount } * * @return the loyalty account */ public List getLoyaltyAccount() { if (loyaltyAccount == null) { loyaltyAccount = new ArrayList(); } return this.loyaltyAccount; } /** * Gets the value of the customerOrder 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 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 * {@link CustomerOrder } * * @return the customer order */ public List getCustomerOrder() { if (customerOrder == null) { customerOrder = new ArrayList(); } return this.customerOrder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy