Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9777 manish.sha 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
5
// Generated on: 2014.02.05 at 12:01:10 PM IST 
6
//
7
 
8
 
9
package com.amazonaws.mws.model;
10
 
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlType;
15
 
16
 
17
/**
18
 * <p>Java class for anonymous complex type.
19
 * 
20
 * <p>The following schema fragment specifies the expected content contained within this class.
21
 * 
22
 * <pre>
23
 * &lt;complexType>
24
 *   &lt;complexContent>
25
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26
 *       &lt;sequence>
27
 *         &lt;element name="FulfillmentChannel" type="{http://www.w3.org/2001/XMLSchema}string"/>
28
 *         &lt;element name="ShipServiceLevel" type="{http://www.w3.org/2001/XMLSchema}string"/>
29
 *         &lt;element name="Address">
30
 *           &lt;complexType>
31
 *             &lt;complexContent>
32
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33
 *                 &lt;sequence>
34
 *                   &lt;element name="City" type="{http://www.w3.org/2001/XMLSchema}string"/>
35
 *                   &lt;element name="State" type="{http://www.w3.org/2001/XMLSchema}string"/>
36
 *                   &lt;element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
37
 *                   &lt;element name="Country" type="{http://www.w3.org/2001/XMLSchema}string"/>
38
 *                 &lt;/sequence>
39
 *               &lt;/restriction>
40
 *             &lt;/complexContent>
41
 *           &lt;/complexType>
42
 *         &lt;/element>
43
 *       &lt;/sequence>
44
 *     &lt;/restriction>
45
 *   &lt;/complexContent>
46
 * &lt;/complexType>
47
 * </pre>
48
 * 
49
 * 
50
 */
51
@XmlAccessorType(XmlAccessType.FIELD)
52
@XmlType(name = "", propOrder = {
53
    "fulfillmentChannel",
54
    "shipServiceLevel",
55
    "address"
56
})
57
public class FulfillmentData {
58
 
59
    @XmlElement(name = "FulfillmentChannel", required = true)
60
    protected String fulfillmentChannel;
61
    @XmlElement(name = "ShipServiceLevel", required = true)
62
    protected String shipServiceLevel;
63
    @XmlElement(name = "Address", required = true)
64
    protected Address address;
65
 
66
    /**
67
     * Gets the value of the fulfillmentChannel property.
68
     * 
69
     * @return
70
     *     possible object is
71
     *     {@link String }
72
     *     
73
     */
74
    public String getFulfillmentChannel() {
75
        return fulfillmentChannel;
76
    }
77
 
78
    /**
79
     * Sets the value of the fulfillmentChannel property.
80
     * 
81
     * @param value
82
     *     allowed object is
83
     *     {@link String }
84
     *     
85
     */
86
    public void setFulfillmentChannel(String value) {
87
        this.fulfillmentChannel = value;
88
    }
89
 
90
    /**
91
     * Gets the value of the shipServiceLevel property.
92
     * 
93
     * @return
94
     *     possible object is
95
     *     {@link String }
96
     *     
97
     */
98
    public String getShipServiceLevel() {
99
        return shipServiceLevel;
100
    }
101
 
102
    /**
103
     * Sets the value of the shipServiceLevel property.
104
     * 
105
     * @param value
106
     *     allowed object is
107
     *     {@link String }
108
     *     
109
     */
110
    public void setShipServiceLevel(String value) {
111
        this.shipServiceLevel = value;
112
    }
113
 
114
    /**
115
     * Gets the value of the address property.
116
     * 
117
     * @return
118
     *     possible object is
119
     *     {@link Address }
120
     *     
121
     */
122
    public Address getAddress() {
123
        return address;
124
    }
125
 
126
    /**
127
     * Sets the value of the address property.
128
     * 
129
     * @param value
130
     *     allowed object is
131
     *     {@link Address }
132
     *     
133
     */
134
    public void setAddress(Address value) {
135
        this.address = value;
136
    }
137
 
138
}