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.ArrayOfWayBillGenerationResponse;/*** <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="ImportDataResult" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}ArrayOfWayBillGenerationResponse" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"importDataResult"})@XmlRootElement(name = "ImportDataResponse")public class ImportDataResponse {@XmlElementRef(name = "ImportDataResult", namespace = "http://tempuri.org/", type = JAXBElement.class)protected JAXBElement<ArrayOfWayBillGenerationResponse> importDataResult;/*** Gets the value of the importDataResult property.** @return* possible object is* {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationResponse }{@code >}**/public JAXBElement<ArrayOfWayBillGenerationResponse> getImportDataResult() {return importDataResult;}/*** Sets the value of the importDataResult property.** @param value* allowed object is* {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationResponse }{@code >}**/public void setImportDataResult(JAXBElement<ArrayOfWayBillGenerationResponse> value) {this.importDataResult = value;}}