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

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

package com.adyen.model.nexo;

import io.swagger.v3.oas.annotations.media.Schema;

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 Payment Response messageType. -- Usage: It conveys Information related to the Payment transaction processed by the POI System
 *
 * 

Java class for PaymentResponse complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PaymentResponse">
 *   <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="PaymentResult" type="{}PaymentResult" minOccurs="0"/>
 *         <element name="LoyaltyResult" type="{}LoyaltyResult" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="PaymentReceipt" type="{}PaymentReceipt" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="CustomerOrder" type="{}CustomerOrder" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaymentResponse", propOrder = { "response", "saleData", "poiData", "paymentResult", "loyaltyResult", "paymentReceipt", "customerOrder" }) public class PaymentResponse { /** * The Response. */ @XmlElement(name = "Response", required = true) @Schema(description = "Result of a message request processing.") protected Response response; /** * The Sale data. */ @XmlElement(name = "SaleData", required = true) @Schema(description = "Data related to the Sale System. --Rule: Copy") protected SaleData saleData; /** * The Poi data. */ @XmlElement(name = "POIData", required = true) @Schema(description = "Data related to the POI System.") protected POIData poiData; /** * The Payment result. */ @XmlElement(name = "PaymentResult") @Schema(description = "Data related to the result of a processed payment transaction. --Rule: If one data element is present") protected PaymentResult paymentResult; /** * The Loyalty result. */ @XmlElement(name = "LoyaltyResult") @Schema(description = "Data related to the result of a processed loyalty transaction. --Rule: Loyalty cards used with the payment transaction") protected List loyaltyResult; /** * The Payment receipt. */ @XmlElement(name = "PaymentReceipt") @Schema(description = "Customer or Merchant payment receipt. --Rule: If Basic profile implementation with no printer on the POI.") protected List paymentReceipt; /** * The Customer order. */ @XmlElement(name = "CustomerOrder") @Schema(description = "Customer order attached to a card, recorded in the POI system. --Rule: If the list of customer orders has been requested.") 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 paymentResult property. * * @return possible object is {@link PaymentResult } */ public PaymentResult getPaymentResult() { return paymentResult; } /** * Sets the value of the paymentResult property. * * @param value allowed object is {@link PaymentResult } */ public void setPaymentResult(PaymentResult value) { this.paymentResult = value; } /** * 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 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 * {@link LoyaltyResult } * * @return the loyalty result */ public List getLoyaltyResult() { if (loyaltyResult == null) { loyaltyResult = new ArrayList<>(); } return this.loyaltyResult; } /** * Gets the value of the paymentReceipt 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 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 * {@link PaymentReceipt } * * @return the payment receipt */ public List getPaymentReceipt() { if (paymentReceipt == null) { paymentReceipt = new ArrayList<>(); } return this.paymentReceipt; } /** * 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