Package com.adyen.model.nexo
Class Response
- java.lang.Object
-
- com.adyen.model.nexo.Response
-
public class Response extends Object
Definition: Result of a messageType request processing. -- Usage: If Result is Success, ErrorCondition is absent or not used in the processing of the messageType. In the other cases, the ErrorCondition has to be present and can refine the processing of the messageType response. AdditionalResponse gives moreJava class for Response complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Response"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="AdditionalResponse" type="{}AdditionalResponse" minOccurs="0"/> </sequence> <attribute name="Result" use="required" type="{}ResultType" /> <attribute name="ErrorCondition" type="{}ErrorConditionType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringadditionalResponseThe Additional response.protected ErrorConditionTypeerrorConditionThe Error condition.protected ResultTyperesultThe Result.
-
Constructor Summary
Constructors Constructor Description Response()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAdditionalResponse()Gets the value of the additionalResponse property.ErrorConditionTypegetErrorCondition()Gets the value of the errorCondition property.ResultTypegetResult()Gets the value of the result property.voidsetAdditionalResponse(String value)Sets the value of the additionalResponse property.voidsetErrorCondition(ErrorConditionType value)Sets the value of the errorCondition property.voidsetResult(ResultType value)Sets the value of the result property.
-
-
-
Field Detail
-
additionalResponse
protected String additionalResponse
The Additional response.
-
result
protected ResultType result
The Result.
-
errorCondition
protected ErrorConditionType errorCondition
The Error condition.
-
-
Method Detail
-
getAdditionalResponse
public String getAdditionalResponse()
Gets the value of the additionalResponse property.- Returns:
- possible object is
String
-
setAdditionalResponse
public void setAdditionalResponse(String value)
Sets the value of the additionalResponse property.- Parameters:
value- allowed object isString
-
getResult
public ResultType getResult()
Gets the value of the result property.- Returns:
- possible object is
ResultType
-
setResult
public void setResult(ResultType value)
Sets the value of the result property.- Parameters:
value- allowed object isResultType
-
getErrorCondition
public ErrorConditionType getErrorCondition()
Gets the value of the errorCondition property.- Returns:
- possible object is
ErrorConditionType
-
setErrorCondition
public void setErrorCondition(ErrorConditionType value)
Sets the value of the errorCondition property.- Parameters:
value- allowed object isErrorConditionType
-
-