com.adyen.model.nexo.BatchResponse 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 Batch Response messageType. -- Usage: It conveys either the response of transactions to perform sent in the batch request, or a collection of results of performed Payment, Loyalty and Reversal transactions in a batch messageType or file.
*
* Java class for BatchResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BatchResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Response" type="{}Response"/>
* <element name="PerformedTransaction" type="{}PerformedTransaction" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BatchResponse", propOrder = {
"response",
"performedTransaction"
})
public class BatchResponse {
/**
* The Response.
*/
@XmlElement(name = "Response", required = true)
@Schema(description = "Result of a message request processing.")
protected Response response;
/**
* The Performed transaction.
*/
@XmlElement(name = "PerformedTransaction")
@Schema(description = "Result of performed transactions.")
protected List performedTransaction;
/**
* 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 performedTransaction 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 performedTransaction property.
*
*
* For example, to add a new item, do as follows:
*
* getPerformedTransaction().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PerformedTransaction }
*
* @return the performed transaction
*/
public List getPerformedTransaction() {
if (performedTransaction == null) {
performedTransaction = new ArrayList<>();
}
return this.performedTransaction;
}
}