Package com.adyen.model.nexo
Class DiagnosisRequest
- java.lang.Object
-
- com.adyen.model.nexo.DiagnosisRequest
-
public class DiagnosisRequest extends Object
Definition: Content of the Diagnosis Request messageType. -- Usage: It conveys Information related to the target POI for which the diagnosis is requestedJava class for DiagnosisRequest complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DiagnosisRequest"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="AcquirerID" type="{}AcquirerID" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="POIID" type="{}POIID" /> <attribute name="HostDiagnosisFlag" type="{}HostDiagnosisFlag" default="false" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>acquirerIDThe Acquirer id.protected BooleanhostDiagnosisFlagThe Host diagnosis flag.protected StringpoiidThe Poiid.
-
Constructor Summary
Constructors Constructor Description DiagnosisRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getAcquirerID()Gets the value of the acquirerID property.StringgetPOIID()Gets the value of the poiid property.booleanisHostDiagnosisFlag()Gets the value of the hostDiagnosisFlag property.voidsetHostDiagnosisFlag(Boolean value)Sets the value of the hostDiagnosisFlag property.voidsetPOIID(String value)Sets the value of the poiid property.
-
-
-
Method Detail
-
getAcquirerID
public List<String> getAcquirerID()
Gets the value of the acquirerID 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 acquirerID property.For example, to add a new item, do as follows:
getAcquirerID().add(newItem);Objects of the following type(s) are allowed in the list
String- Returns:
- the acquirer id
-
getPOIID
public String getPOIID()
Gets the value of the poiid property.- Returns:
- possible object is
String
-
setPOIID
public void setPOIID(String value)
Sets the value of the poiid property.- Parameters:
value- allowed object isString
-
isHostDiagnosisFlag
public boolean isHostDiagnosisFlag()
Gets the value of the hostDiagnosisFlag property.- Returns:
- possible object is
Boolean
-
-