All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.nexo.PrintRequest Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

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) 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy