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

com.omgm.speedy.eps.soap.model.CreatePDFResponse Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for createPDFResponse complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="createPDFResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="return" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "createPDFResponse", propOrder = { "_return" }) public class CreatePDFResponse { @XmlElementRef(name = "return", type = JAXBElement.class, required = false) protected JAXBElement _return; /** * Gets the value of the return property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * */ public JAXBElement getReturn() { return _return; } /** * Sets the value of the return property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * */ public void setReturn(JAXBElement value) { this._return = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy