Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
 * &lt;complexType>
20
 *   &lt;complexContent>
21
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22
 *       &lt;sequence>
23
 *         &lt;element name="ImportDataResult" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}ArrayOfWayBillGenerationResponse" minOccurs="0"/>
24
 *       &lt;/sequence>
25
 *     &lt;/restriction>
26
 *   &lt;/complexContent>
27
 * &lt;/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
}