com.adyen.model.nexo.PrintOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
package com.adyen.model.nexo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Information to print and the way to process the print. -- Usage: It contains a complete print operation for a Print Device type.
*
* Java class for PrintOutput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PrintOutput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="OutputContent" type="{}OutputContent"/>
* <element name="OutputSignature" type="{}OutputSignature" minOccurs="0"/>
* </sequence>
* <attribute name="DocumentQualifier" use="required" type="{}DocumentQualifierType" />
* <attribute name="ResponseMode" use="required" type="{}ResponseModeType" />
* <attribute name="IntegratedPrintFlag" type="{}IntegratedPrintFlag" default="false" />
* <attribute name="RequiredSignatureFlag" type="{}RequiredSignatureFlag" default="false" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PrintOutput", propOrder = {
"outputContent",
"outputSignature"
})
public class PrintOutput {
/**
* The Output content.
*/
@XmlElement(name = "OutputContent", required = true)
protected OutputContent outputContent;
/**
* The Output signature.
*/
@XmlElement(name = "OutputSignature")
protected byte[] outputSignature;
/**
* The Document qualifier.
*/
@XmlAttribute(name = "DocumentQualifier", required = true)
protected DocumentQualifierType documentQualifier;
/**
* The Response mode.
*/
@XmlAttribute(name = "ResponseMode", required = true)
protected ResponseModeType responseMode;
/**
* The Integrated print flag.
*/
@XmlAttribute(name = "IntegratedPrintFlag")
protected Boolean integratedPrintFlag;
/**
* The Required signature flag.
*/
@XmlAttribute(name = "RequiredSignatureFlag")
protected Boolean requiredSignatureFlag;
/**
* Gets the value of the outputContent property.
*
* @return possible object is {@link OutputContent }
*/
public OutputContent getOutputContent() {
return outputContent;
}
/**
* Sets the value of the outputContent property.
*
* @param value allowed object is {@link OutputContent }
*/
public void setOutputContent(OutputContent value) {
this.outputContent = value;
}
/**
* Gets the value of the outputSignature property.
*
* @return possible object is byte[]
*/
public byte[] getOutputSignature() {
return outputSignature;
}
/**
* Sets the value of the outputSignature property.
*
* @param value allowed object is byte[]
*/
public void setOutputSignature(byte[] value) {
this.outputSignature = value;
}
/**
* Gets the value of the documentQualifier property.
*
* @return possible object is {@link DocumentQualifierType }
*/
public DocumentQualifierType getDocumentQualifier() {
return documentQualifier;
}
/**
* Sets the value of the documentQualifier property.
*
* @param value allowed object is {@link DocumentQualifierType }
*/
public void setDocumentQualifier(DocumentQualifierType value) {
this.documentQualifier = value;
}
/**
* Gets the value of the responseMode property.
*
* @return possible object is {@link ResponseModeType }
*/
public ResponseModeType getResponseMode() {
return responseMode;
}
/**
* Sets the value of the responseMode property.
*
* @param value allowed object is {@link ResponseModeType }
*/
public void setResponseMode(ResponseModeType value) {
this.responseMode = value;
}
/**
* Gets the value of the integratedPrintFlag property.
*
* @return possible object is {@link Boolean }
*/
public boolean isIntegratedPrintFlag() {
if (integratedPrintFlag == null) {
return false;
} else {
return integratedPrintFlag;
}
}
/**
* Sets the value of the integratedPrintFlag property.
*
* @param value allowed object is {@link Boolean }
*/
public void setIntegratedPrintFlag(Boolean value) {
this.integratedPrintFlag = value;
}
/**
* Gets the value of the requiredSignatureFlag property.
*
* @return possible object is {@link Boolean }
*/
public boolean isRequiredSignatureFlag() {
if (requiredSignatureFlag == null) {
return false;
} else {
return requiredSignatureFlag;
}
}
/**
* Sets the value of the requiredSignatureFlag property.
*
* @param value allowed object is {@link Boolean }
*/
public void setRequiredSignatureFlag(Boolean value) {
this.requiredSignatureFlag = value;
}
}