Blame | Last modification | View Log | RSS feed
package com.bluedart.tempuri;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.XmlRootElement;import javax.xml.bind.annotation.XmlType;import com.bluedart.entities.WayBillGenerationResponse;/*** <p>Java class for anonymous complex type.** <p>The following schema fragment specifies the expected content contained within this class.** <pre>* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="GenerateWayBillResult" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}WayBillGenerationResponse" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"generateWayBillResult"})@XmlRootElement(name = "GenerateWayBillResponse")public class GenerateWayBillResponse {@XmlElementRef(name = "GenerateWayBillResult", namespace = "http://tempuri.org/", type = JAXBElement.class)protected JAXBElement<WayBillGenerationResponse> generateWayBillResult;/*** Gets the value of the generateWayBillResult property.** @return* possible object is* {@link JAXBElement }{@code <}{@link WayBillGenerationResponse }{@code >}**/public JAXBElement<WayBillGenerationResponse> getGenerateWayBillResult() {return generateWayBillResult;}/*** Sets the value of the generateWayBillResult property.** @param value* allowed object is* {@link JAXBElement }{@code <}{@link WayBillGenerationResponse }{@code >}**/public void setGenerateWayBillResult(JAXBElement<WayBillGenerationResponse> value) {this.generateWayBillResult = value;}}