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

org.iru.rts.tvqr.VoucherQueryResponse Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.05.31 at 01:52:56 PM CEST 
//


package org.iru.rts.tvqr;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Envelope" type="{http://rts.iru.org/tvqr}EnvelopeType"/>
 *         <element name="Body" type="{http://rts.iru.org/tvqr}VoucherQueryResponseBodyType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "envelope", "body" }) @XmlRootElement(name = "VoucherQueryResponse") public class VoucherQueryResponse implements Serializable { private final static long serialVersionUID = 231957628158063549L; @XmlElement(name = "Envelope", required = true) protected EnvelopeType envelope; @XmlElement(name = "Body", required = true) protected VoucherQueryResponseBodyType body; /** * Gets the value of the envelope property. * * @return * possible object is * {@link EnvelopeType } * */ public EnvelopeType getEnvelope() { return envelope; } /** * Sets the value of the envelope property. * * @param value * allowed object is * {@link EnvelopeType } * */ public void setEnvelope(EnvelopeType value) { this.envelope = value; } /** * Gets the value of the body property. * * @return * possible object is * {@link VoucherQueryResponseBodyType } * */ public VoucherQueryResponseBodyType getBody() { return body; } /** * Sets the value of the body property. * * @param value * allowed object is * {@link VoucherQueryResponseBodyType } * */ public void setBody(VoucherQueryResponseBodyType value) { this.body = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy