Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
492 blopes 1
//
2
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementa��o de Refer�ncia (JAXB) de Bind XML, v2.2.8-b130911.1802 
3
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Todas as modifica��es neste arquivo ser�o perdidas ap�s a recompila��o do esquema de origem. 
5
// Gerado em: 2017.05.30 �s 08:31:54 PM GFT 
6
//
7
 
8
 
9
package nfce;
10
 
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlAttribute;
14
import javax.xml.bind.annotation.XmlElement;
15
import javax.xml.bind.annotation.XmlType;
16
 
17
 
18
/**
19
 * Tipo Pedido de Consulta do Recido do Lote de Notas Fiscais Eletr�nicas
20
 *
21
 * <p>Classe Java de TConsReciNFe complex type.
22
 *
23
 * <p>O seguinte fragmento do esquema especifica o conte�do esperado contido dentro desta classe.
24
 *
25
 * <pre>
26
 * &lt;complexType name="TConsReciNFe">
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/nfe}TAmb"/>
31
 *         &lt;element name="nRec" type="{http://www.portalfiscal.inf.br/nfe}TRec"/>
32
 *       &lt;/sequence>
33
 *       &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/nfe}TVerNFe" />
34
 *     &lt;/restriction>
35
 *   &lt;/complexContent>
36
 * &lt;/complexType>
37
 * </pre>
38
 *
39
 *
40
 */
41
@XmlAccessorType(XmlAccessType.FIELD)
42
@XmlType(name = "TConsReciNFe", propOrder = {
43
    "tpAmb",
44
    "nRec"
45
})
46
public class TConsReciNFe {
47
 
48
    @XmlElement(required = true)
49
    protected String tpAmb;
50
    @XmlElement(required = true)
51
    protected String nRec;
52
    @XmlAttribute(name = "versao", required = true)
53
    protected String versao;
54
 
55
    /**
56
     * Obt�m o valor da propriedade tpAmb.
57
     *
58
     * @return
59
     *     possible object is
60
     *     {@link String }
61
     *    
62
     */
63
    public String getTpAmb() {
64
        return tpAmb;
65
    }
66
 
67
    /**
68
     * Define o valor da propriedade tpAmb.
69
     *
70
     * @param value
71
     *     allowed object is
72
     *     {@link String }
73
     *    
74
     */
75
    public void setTpAmb(String value) {
76
        this.tpAmb = value;
77
    }
78
 
79
    /**
80
     * Obt�m o valor da propriedade nRec.
81
     *
82
     * @return
83
     *     possible object is
84
     *     {@link String }
85
     *    
86
     */
87
    public String getNRec() {
88
        return nRec;
89
    }
90
 
91
    /**
92
     * Define o valor da propriedade nRec.
93
     *
94
     * @param value
95
     *     allowed object is
96
     *     {@link String }
97
     *    
98
     */
99
    public void setNRec(String value) {
100
        this.nRec = value;
101
    }
102
 
103
    /**
104
     * Obt�m o valor da propriedade versao.
105
     *
106
     * @return
107
     *     possible object is
108
     *     {@link String }
109
     *    
110
     */
111
    public String getVersao() {
112
        return versao;
113
    }
114
 
115
    /**
116
     * Define o valor da propriedade versao.
117
     *
118
     * @param value
119
     *     allowed object is
120
     *     {@link String }
121
     *    
122
     */
123
    public void setVersao(String value) {
124
        this.versao = value;
125
    }
126
 
127
}