| 20662 |
kshitij.so |
1 |
|
|
|
2 |
package com.bluedart.tempuri;
|
|
|
3 |
|
|
|
4 |
import javax.xml.bind.JAXBElement;
|
|
|
5 |
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
6 |
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
7 |
import javax.xml.bind.annotation.XmlElementRef;
|
|
|
8 |
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
9 |
import javax.xml.bind.annotation.XmlType;
|
|
|
10 |
import com.bluedart.entities.ArrayOfWayBillGenerationResponse;
|
|
|
11 |
|
|
|
12 |
|
|
|
13 |
/**
|
|
|
14 |
* <p>Java class for anonymous complex type.
|
|
|
15 |
*
|
|
|
16 |
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
|
17 |
*
|
|
|
18 |
* <pre>
|
|
|
19 |
* <complexType>
|
|
|
20 |
* <complexContent>
|
|
|
21 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
22 |
* <sequence>
|
|
|
23 |
* <element name="ImportDataResult" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}ArrayOfWayBillGenerationResponse" minOccurs="0"/>
|
|
|
24 |
* </sequence>
|
|
|
25 |
* </restriction>
|
|
|
26 |
* </complexContent>
|
|
|
27 |
* </complexType>
|
|
|
28 |
* </pre>
|
|
|
29 |
*
|
|
|
30 |
*
|
|
|
31 |
*/
|
|
|
32 |
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
33 |
@XmlType(name = "", propOrder = {
|
|
|
34 |
"importDataResult"
|
|
|
35 |
})
|
|
|
36 |
@XmlRootElement(name = "ImportDataResponse")
|
|
|
37 |
public class ImportDataResponse {
|
|
|
38 |
|
|
|
39 |
@XmlElementRef(name = "ImportDataResult", namespace = "http://tempuri.org/", type = JAXBElement.class)
|
|
|
40 |
protected JAXBElement<ArrayOfWayBillGenerationResponse> importDataResult;
|
|
|
41 |
|
|
|
42 |
/**
|
|
|
43 |
* Gets the value of the importDataResult property.
|
|
|
44 |
*
|
|
|
45 |
* @return
|
|
|
46 |
* possible object is
|
|
|
47 |
* {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationResponse }{@code >}
|
|
|
48 |
*
|
|
|
49 |
*/
|
|
|
50 |
public JAXBElement<ArrayOfWayBillGenerationResponse> getImportDataResult() {
|
|
|
51 |
return importDataResult;
|
|
|
52 |
}
|
|
|
53 |
|
|
|
54 |
/**
|
|
|
55 |
* Sets the value of the importDataResult property.
|
|
|
56 |
*
|
|
|
57 |
* @param value
|
|
|
58 |
* allowed object is
|
|
|
59 |
* {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationResponse }{@code >}
|
|
|
60 |
*
|
|
|
61 |
*/
|
|
|
62 |
public void setImportDataResult(JAXBElement<ArrayOfWayBillGenerationResponse> value) {
|
|
|
63 |
this.importDataResult = value;
|
|
|
64 |
}
|
|
|
65 |
|
|
|
66 |
}
|