Class DiagnosisResponse
- java.lang.Object
-
- com.adyen.model.nexo.DiagnosisResponse
-
public class DiagnosisResponse extends Object
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>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<HostStatus>hostStatusThe Host status.protected List<String>loggedSaleIDThe Logged sale id.protected POIStatuspoiStatusThe Poi status.protected ResponseresponseThe Response.
-
Constructor Summary
Constructors Constructor Description DiagnosisResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<HostStatus>getHostStatus()Gets the value of the hostStatus property.List<String>getLoggedSaleID()Gets the value of the loggedSaleID property.POIStatusgetPOIStatus()Gets the value of the poiStatus property.ResponsegetResponse()Gets the value of the response property.voidsetPOIStatus(POIStatus value)Sets the value of the poiStatus property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Method Detail
-
getResponse
public Response getResponse()
Gets the value of the response property.- Returns:
- possible object is
Response
-
setResponse
public void setResponse(Response value)
Sets the value of the response property.- Parameters:
value- allowed object isResponse
-
getLoggedSaleID
public List<String> getLoggedSaleID()
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
setmethod 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
String- Returns:
- the logged sale id
-
getPOIStatus
public POIStatus getPOIStatus()
Gets the value of the poiStatus property.- Returns:
- possible object is
POIStatus
-
setPOIStatus
public void setPOIStatus(POIStatus value)
Sets the value of the poiStatus property.- Parameters:
value- allowed object isPOIStatus
-
getHostStatus
public List<HostStatus> getHostStatus()
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
setmethod 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
HostStatus- Returns:
- the host status
-
-