Subversion Repositories SmartDukaan

Rev

Rev 9476 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9476 Rev 9628
Line 37... Line 37...
37
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
37
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
38
 *                 <sequence>
38
 *                 <sequence>
39
 *                   <element name="Courier" type="{http://www.w3.org/2001/XMLSchema}string"/>
39
 *                   <element name="Courier" type="{http://www.w3.org/2001/XMLSchema}string"/>
40
 *                   <element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/>
40
 *                   <element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/>
41
 *                   <element name="ReferenceCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
41
 *                   <element name="ReferenceCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
42
 *                   <element name="SuborderId" type="{http://www.w3.org/2001/XMLSchema}int"/>
42
 *                   <element name="SuborderId" type="{http://www.w3.org/2001/XMLSchema}string"/>
43
 *                   <element name="SKUCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
43
 *                   <element name="SKUCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
44
 *                   <element name="AWBNumber" type="{http://www.w3.org/2001/XMLSchema}long"/>
44
 *                   <element name="AWBNumber" type="{http://www.w3.org/2001/XMLSchema}long"/>
45
 *                   <element name="OrderPlacedDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
45
 *                   <element name="OrderPlacedDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
46
 *                   <element name="CustomerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
46
 *                   <element name="CustomerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
47
 *                   <element name="ShippingName" type="{http://www.w3.org/2001/XMLSchema}string"/>
47
 *                   <element name="ShippingName" type="{http://www.w3.org/2001/XMLSchema}string"/>
Line 161... Line 161...
161
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
161
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
162
     *       <sequence>
162
     *       <sequence>
163
     *         <element name="Courier" type="{http://www.w3.org/2001/XMLSchema}string"/>
163
     *         <element name="Courier" type="{http://www.w3.org/2001/XMLSchema}string"/>
164
     *         <element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/>
164
     *         <element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/>
165
     *         <element name="ReferenceCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
165
     *         <element name="ReferenceCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
166
     *         <element name="SuborderId" type="{http://www.w3.org/2001/XMLSchema}int"/>
166
     *         <element name="SuborderId" type="{http://www.w3.org/2001/XMLSchema}string"/>
167
     *         <element name="SKUCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
167
     *         <element name="SKUCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
168
     *         <element name="AWBNumber" type="{http://www.w3.org/2001/XMLSchema}long"/>
168
     *         <element name="AWBNumber" type="{http://www.w3.org/2001/XMLSchema}long"/>
169
     *         <element name="OrderPlacedDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
169
     *         <element name="OrderPlacedDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
170
     *         <element name="CustomerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
170
     *         <element name="CustomerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
171
     *         <element name="ShippingName" type="{http://www.w3.org/2001/XMLSchema}string"/>
171
     *         <element name="ShippingName" type="{http://www.w3.org/2001/XMLSchema}string"/>
Line 208... Line 208...
208
        @XmlElement(name = "Product", required = true)
208
        @XmlElement(name = "Product", required = true)
209
        protected String product;
209
        protected String product;
210
        @XmlElement(name = "ReferenceCode", required = true)
210
        @XmlElement(name = "ReferenceCode", required = true)
211
        protected String referenceCode;
211
        protected String referenceCode;
212
        @XmlElement(name = "SuborderId")
212
        @XmlElement(name = "SuborderId")
213
        protected long suborderId;
213
        protected String suborderId;
214
        @XmlElement(name = "SKUCode")
214
        @XmlElement(name = "SKUCode")
215
        protected String skuCode;
215
        protected String skuCode;
216
        @XmlElement(name = "AWBNumber")
216
        @XmlElement(name = "AWBNumber")
217
        protected long awbNumber;
217
        protected long awbNumber;
218
        @XmlElement(name = "OrderPlacedDate", required = true)
218
        @XmlElement(name = "OrderPlacedDate", required = true)
Line 309... Line 309...
309
 
309
 
310
        /**
310
        /**
311
         * Gets the value of the suborderId property.
311
         * Gets the value of the suborderId property.
312
         * 
312
         * 
313
         */
313
         */
314
        public long getSuborderId() {
314
        public String getSuborderId() {
315
            return suborderId;
315
            return suborderId;
316
        }
316
        }
317
 
317
 
318
        /**
318
        /**
319
         * Sets the value of the suborderId property.
319
         * Sets the value of the suborderId property.
320
         * 
320
         * 
321
         */
321
         */
322
        public void setSuborderId(long value) {
322
        public void setSuborderId(String value) {
323
            this.suborderId = value;
323
            this.suborderId = value;
324
        }
324
        }
325
 
325
 
326
        /**
326
        /**
327
         * Gets the value of the skuCode property.
327
         * Gets the value of the skuCode property.