Package com.adyen.model.nexo
Class InputResponse
- java.lang.Object
-
- com.adyen.model.nexo.InputResponse
-
public class InputResponse extends Object
Definition: Content of the Input Response messageType. -- Usage: It conveys:The result of the outputs, parallel to the messageType request, except if response not required and absent.The result of the inputJava class for InputResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="InputResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="OutputResult" type="{}OutputResult" minOccurs="0"/> <element name="InputResult" type="{}InputResult"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected InputResultinputResultThe Input result.protected OutputResultoutputResultThe Output result.
-
Constructor Summary
Constructors Constructor Description InputResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InputResultgetInputResult()Gets the value of the inputResult property.OutputResultgetOutputResult()Gets the value of the outputResult property.voidsetInputResult(InputResult value)Sets the value of the inputResult property.voidsetOutputResult(OutputResult value)Sets the value of the outputResult property.
-
-
-
Field Detail
-
outputResult
protected OutputResult outputResult
The Output result.
-
inputResult
protected InputResult inputResult
The Input result.
-
-
Method Detail
-
getOutputResult
public OutputResult getOutputResult()
Gets the value of the outputResult property.- Returns:
- possible object is
OutputResult
-
setOutputResult
public void setOutputResult(OutputResult value)
Sets the value of the outputResult property.- Parameters:
value- allowed object isOutputResult
-
getInputResult
public InputResult getInputResult()
Gets the value of the inputResult property.- Returns:
- possible object is
InputResult
-
setInputResult
public void setInputResult(InputResult value)
Sets the value of the inputResult property.- Parameters:
value- allowed object isInputResult
-
-