Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
695 blopes 1
 
2
package br.com.swconsultoria.nfe.schema_4.retConsSitNFe;
3
 
4
import javax.xml.bind.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlAttribute;
7
import javax.xml.bind.annotation.XmlElement;
8
import javax.xml.bind.annotation.XmlType;
9
 
10
 
11
/**
12
 * Tipo Pedido de Consulta da Situação Atual da Nota Fiscal Eletrônica
13
 *
14
 * <p>Classe Java de TConsSitNFe complex type.
15
 *
16
 * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
17
 *
18
 * <pre>
19
 * &lt;complexType name="TConsSitNFe"&gt;
20
 *   &lt;complexContent&gt;
21
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
22
 *       &lt;sequence&gt;
23
 *         &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/nfe}TAmb"/&gt;
24
 *         &lt;element name="xServ"&gt;
25
 *           &lt;simpleType&gt;
26
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TServ"&gt;
27
 *               &lt;enumeration value="CONSULTAR"/&gt;
28
 *             &lt;/restriction&gt;
29
 *           &lt;/simpleType&gt;
30
 *         &lt;/element&gt;
31
 *         &lt;element name="chNFe" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
32
 *       &lt;/sequence&gt;
33
 *       &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/nfe}TVerConsSitNFe" /&gt;
34
 *     &lt;/restriction&gt;
35
 *   &lt;/complexContent&gt;
36
 * &lt;/complexType&gt;
37
 * </pre>
38
 *
39
 *
40
 */
41
@XmlAccessorType(XmlAccessType.FIELD)
42
@XmlType(name = "TConsSitNFe", namespace = "http://www.portalfiscal.inf.br/nfe", propOrder = {
43
    "tpAmb",
44
    "xServ",
45
    "chNFe"
46
})
47
public class TConsSitNFe {
48
 
49
    @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
50
    protected String tpAmb;
51
    @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
52
    protected String xServ;
53
    @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
54
    protected String chNFe;
55
    @XmlAttribute(name = "versao", required = true)
56
    protected String versao;
57
 
58
    /**
59
     * Obtém o valor da propriedade tpAmb.
60
     *
61
     * @return
62
     *     possible object is
63
     *     {@link String }
64
     *    
65
     */
66
    public String getTpAmb() {
67
        return tpAmb;
68
    }
69
 
70
    /**
71
     * Define o valor da propriedade tpAmb.
72
     *
73
     * @param value
74
     *     allowed object is
75
     *     {@link String }
76
     *    
77
     */
78
    public void setTpAmb(String value) {
79
        this.tpAmb = value;
80
    }
81
 
82
    /**
83
     * Obtém o valor da propriedade xServ.
84
     *
85
     * @return
86
     *     possible object is
87
     *     {@link String }
88
     *    
89
     */
90
    public String getXServ() {
91
        return xServ;
92
    }
93
 
94
    /**
95
     * Define o valor da propriedade xServ.
96
     *
97
     * @param value
98
     *     allowed object is
99
     *     {@link String }
100
     *    
101
     */
102
    public void setXServ(String value) {
103
        this.xServ = value;
104
    }
105
 
106
    /**
107
     * Obtém o valor da propriedade chNFe.
108
     *
109
     * @return
110
     *     possible object is
111
     *     {@link String }
112
     *    
113
     */
114
    public String getChNFe() {
115
        return chNFe;
116
    }
117
 
118
    /**
119
     * Define o valor da propriedade chNFe.
120
     *
121
     * @param value
122
     *     allowed object is
123
     *     {@link String }
124
     *    
125
     */
126
    public void setChNFe(String value) {
127
        this.chNFe = value;
128
    }
129
 
130
    /**
131
     * Obtém o valor da propriedade versao.
132
     *
133
     * @return
134
     *     possible object is
135
     *     {@link String }
136
     *    
137
     */
138
    public String getVersao() {
139
        return versao;
140
    }
141
 
142
    /**
143
     * Define o valor da propriedade versao.
144
     *
145
     * @param value
146
     *     allowed object is
147
     *     {@link String }
148
     *    
149
     */
150
    public void setVersao(String value) {
151
        this.versao = value;
152
    }
153
 
154
}