com.adyen.model.nexo.DiagnosisResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
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 Diagnosis Response messageType. -- Usage: It conveys the result of the requested diagnosis and a possible messageType to display on a logical device.
*
* Java class for DiagnosisResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DiagnosisResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Response" type="{}Response"/>
* <element name="LoggedSaleID" type="{}LoggedSaleID" maxOccurs="unbounded" minOccurs="0"/>
* <element name="POIStatus" type="{}POIStatus" minOccurs="0"/>
* <element name="HostStatus" type="{}HostStatus" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DiagnosisResponse", propOrder = {
"response",
"loggedSaleID",
"poiStatus",
"hostStatus"
})
public class DiagnosisResponse {
/**
* The Response.
*/
@XmlElement(name = "Response", required = true)
protected Response response;
/**
* The Logged sale id.
*/
@XmlElement(name = "LoggedSaleID")
protected List loggedSaleID;
/**
* The Poi status.
*/
@XmlElement(name = "POIStatus")
protected POIStatus poiStatus;
/**
* The Host status.
*/
@XmlElement(name = "HostStatus")
protected List hostStatus;
/**
* 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 loggedSaleID 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 loggedSaleID property.
*
*
* For example, to add a new item, do as follows:
*
* getLoggedSaleID().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
* @return the logged sale id
*/
public List getLoggedSaleID() {
if (loggedSaleID == null) {
loggedSaleID = new ArrayList<>();
}
return this.loggedSaleID;
}
/**
* Gets the value of the poiStatus property.
*
* @return possible object is {@link POIStatus }
*/
public POIStatus getPOIStatus() {
return poiStatus;
}
/**
* Sets the value of the poiStatus property.
*
* @param value allowed object is {@link POIStatus }
*/
public void setPOIStatus(POIStatus value) {
this.poiStatus = value;
}
/**
* Gets the value of the hostStatus 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 hostStatus property.
*
*
* For example, to add a new item, do as follows:
*
* getHostStatus().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostStatus }
*
* @return the host status
*/
public List getHostStatus() {
if (hostStatus == null) {
hostStatus = new ArrayList<>();
}
return this.hostStatus;
}
}