Package com.adyen.model.nexo
Class PrintResponse
- java.lang.Object
-
- com.adyen.model.nexo.PrintResponse
-
public class PrintResponse extends Object
Definition: Content of the Print Response messageType. -- Usage: It conveys the result of the print, parallel to the messageType request, except if response not required and absent.Java class for PrintResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PrintResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> </sequence> <attribute name="DocumentQualifier" use="required" type="{}DocumentQualifierType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected DocumentQualifierTypedocumentQualifierThe Document qualifier.protected ResponseresponseThe Response.
-
Constructor Summary
Constructors Constructor Description PrintResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DocumentQualifierTypegetDocumentQualifier()Gets the value of the documentQualifier property.ResponsegetResponse()Gets the value of the response property.voidsetDocumentQualifier(DocumentQualifierType value)Sets the value of the documentQualifier property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
documentQualifier
protected DocumentQualifierType documentQualifier
The Document qualifier.
-
-
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
-
getDocumentQualifier
public DocumentQualifierType getDocumentQualifier()
Gets the value of the documentQualifier property.- Returns:
- possible object is
DocumentQualifierType
-
setDocumentQualifier
public void setDocumentQualifier(DocumentQualifierType value)
Sets the value of the documentQualifier property.- Parameters:
value- allowed object isDocumentQualifierType
-
-