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="DocumentVersion" type="{http://www.w3.org/2001/XMLSchema}float"/>
28
 *       &lt;/sequence>
29
 *     &lt;/restriction>
30
 *   &lt;/complexContent>
31
 * &lt;/complexType>
32
 * </pre>
33
 * 
34
 * 
35
 */
36
@XmlAccessorType(XmlAccessType.FIELD)
37
@XmlType(name = "", propOrder = {
38
    "documentVersion"
39
})
40
public class Header {
41
 
42
    @XmlElement(name = "DocumentVersion")
43
    protected float documentVersion;
44
 
45
    /**
46
     * Gets the value of the documentVersion property.
47
     * 
48
     */
49
    public float getDocumentVersion() {
50
        return documentVersion;
51
    }
52
 
53
    /**
54
     * Sets the value of the documentVersion property.
55
     * 
56
     */
57
    public void setDocumentVersion(float value) {
58
        this.documentVersion = value;
59
    }
60
 
61
}