Blame | Last modification | View Log | RSS feed
//// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>// Any modifications to this file will be lost upon recompilation of the source schema.// Generated on: 2014.02.05 at 12:01:10 PM IST//package com.amazonaws.mws.model;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlType;/*** <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="FulfillmentChannel" type="{http://www.w3.org/2001/XMLSchema}string"/>* <element name="ShipServiceLevel" type="{http://www.w3.org/2001/XMLSchema}string"/>* <element name="Address">* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="City" type="{http://www.w3.org/2001/XMLSchema}string"/>* <element name="State" type="{http://www.w3.org/2001/XMLSchema}string"/>* <element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}int"/>* <element name="Country" type="{http://www.w3.org/2001/XMLSchema}string"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"fulfillmentChannel","shipServiceLevel","address"})public class FulfillmentData {@XmlElement(name = "FulfillmentChannel", required = true)protected String fulfillmentChannel;@XmlElement(name = "ShipServiceLevel", required = true)protected String shipServiceLevel;@XmlElement(name = "Address", required = true)protected Address address;/*** Gets the value of the fulfillmentChannel property.** @return* possible object is* {@link String }**/public String getFulfillmentChannel() {return fulfillmentChannel;}/*** Sets the value of the fulfillmentChannel property.** @param value* allowed object is* {@link String }**/public void setFulfillmentChannel(String value) {this.fulfillmentChannel = value;}/*** Gets the value of the shipServiceLevel property.** @return* possible object is* {@link String }**/public String getShipServiceLevel() {return shipServiceLevel;}/*** Sets the value of the shipServiceLevel property.** @param value* allowed object is* {@link String }**/public void setShipServiceLevel(String value) {this.shipServiceLevel = value;}/*** Gets the value of the address property.** @return* possible object is* {@link Address }**/public Address getAddress() {return address;}/*** Sets the value of the address property.** @param value* allowed object is* {@link Address }**/public void setAddress(Address value) {this.address = value;}}