com.adyen.model.nexo.PrintRequest Maven / Gradle / Ivy
package com.adyen.model.nexo;
import io.swagger.v3.oas.annotations.media.Schema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Content of the Print Request messageType. -- Usage: It conveys the data to print and the way to process the print. It contains the complete content to print.
*
* Java class for PrintRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PrintRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="PrintOutput" type="{}PrintOutput"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PrintRequest", propOrder = {
"printOutput"
})
public class PrintRequest {
/**
* The Print output.
*/
@XmlElement(name = "PrintOutput", required = true)
@Schema(description = "Information to print and the way to process the print.")
protected PrintOutput printOutput;
/**
* Gets the value of the printOutput property.
*
* @return possible object is {@link PrintOutput }
*/
public PrintOutput getPrintOutput() {
return printOutput;
}
/**
* Sets the value of the printOutput property.
*
* @param value allowed object is {@link PrintOutput }
*/
public void setPrintOutput(PrintOutput value) {
this.printOutput = value;
}
}