Package com.adyen.model.nexo
Class InputResult
- java.lang.Object
-
- com.adyen.model.nexo.InputResult
-
public class InputResult extends Object
Definition: Information related to the result the input. -- Usage: In the messageType response, it contains the result and the content of the input.Java class for InputResult complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="InputResult"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> <element name="Input" type="{}Input" minOccurs="0"/> </sequence> <attribute name="Device" use="required" type="{}DeviceType" /> <attribute name="InfoQualify" use="required" type="{}InfoQualifyType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected DeviceTypedeviceThe Device.protected InfoQualifyTypeinfoQualifyThe Info qualify.protected InputinputThe Input.protected ResponseresponseThe Response.
-
Constructor Summary
Constructors Constructor Description InputResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeviceTypegetDevice()Gets the value of the device property.InfoQualifyTypegetInfoQualify()Gets the value of the infoQualify property.InputgetInput()Gets the value of the input property.ResponsegetResponse()Gets the value of the response property.voidsetDevice(DeviceType value)Sets the value of the device property.voidsetInfoQualify(InfoQualifyType value)Sets the value of the infoQualify property.voidsetInput(Input value)Sets the value of the input property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
input
protected Input input
The Input.
-
device
protected DeviceType device
The Device.
-
infoQualify
protected InfoQualifyType infoQualify
The Info qualify.
-
-
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
-
getInput
public Input getInput()
Gets the value of the input property.- Returns:
- possible object is
Input
-
setInput
public void setInput(Input value)
Sets the value of the input property.- Parameters:
value- allowed object isInput
-
getDevice
public DeviceType getDevice()
Gets the value of the device property.- Returns:
- possible object is
DeviceType
-
setDevice
public void setDevice(DeviceType value)
Sets the value of the device property.- Parameters:
value- allowed object isDeviceType
-
getInfoQualify
public InfoQualifyType getInfoQualify()
Gets the value of the infoQualify property.- Returns:
- possible object is
InfoQualifyType
-
setInfoQualify
public void setInfoQualify(InfoQualifyType value)
Sets the value of the infoQualify property.- Parameters:
value- allowed object isInfoQualifyType
-
-