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.envEpec;
3
 
4
import javax.xml.bind.annotation.*;
5
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
6
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
7
 
8
 
9
/**
10
 * Tipo Evento
11
 *
12
 * <p>Classe Java de TEvento complex type.
13
 *
14
 * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
15
 *
16
 * <pre>
17
 * &lt;complexType name="TEvento"&gt;
18
 *   &lt;complexContent&gt;
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
20
 *       &lt;sequence&gt;
21
 *         &lt;element name="infEvento"&gt;
22
 *           &lt;complexType&gt;
23
 *             &lt;complexContent&gt;
24
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
25
 *                 &lt;sequence&gt;
26
 *                   &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/nfe}TCOrgaoIBGE"/&gt;
27
 *                   &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/nfe}TAmb"/&gt;
28
 *                   &lt;choice&gt;
29
 *                     &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpjOpc"/&gt;
30
 *                     &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
31
 *                   &lt;/choice&gt;
32
 *                   &lt;element name="chNFe" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
33
 *                   &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/nfe}TDateTimeUTC"/&gt;
34
 *                   &lt;element name="tpEvento"&gt;
35
 *                     &lt;simpleType&gt;
36
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
37
 *                         &lt;whiteSpace value="preserve"/&gt;
38
 *                         &lt;pattern value="[0-9]{6}"/&gt;
39
 *                         &lt;enumeration value="110140"/&gt;
40
 *                       &lt;/restriction&gt;
41
 *                     &lt;/simpleType&gt;
42
 *                   &lt;/element&gt;
43
 *                   &lt;element name="nSeqEvento"&gt;
44
 *                     &lt;simpleType&gt;
45
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
46
 *                         &lt;whiteSpace value="preserve"/&gt;
47
 *                         &lt;pattern value="[1-9]|[1][0-9]{0,1}|20"/&gt;
48
 *                       &lt;/restriction&gt;
49
 *                     &lt;/simpleType&gt;
50
 *                   &lt;/element&gt;
51
 *                   &lt;element name="verEvento"&gt;
52
 *                     &lt;simpleType&gt;
53
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
54
 *                         &lt;whiteSpace value="preserve"/&gt;
55
 *                         &lt;enumeration value="1.00"/&gt;
56
 *                       &lt;/restriction&gt;
57
 *                     &lt;/simpleType&gt;
58
 *                   &lt;/element&gt;
59
 *                   &lt;element name="detEvento"&gt;
60
 *                     &lt;complexType&gt;
61
 *                       &lt;complexContent&gt;
62
 *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
63
 *                           &lt;sequence&gt;
64
 *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}descEvento"/&gt;
65
 *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}cOrgaoAutor"/&gt;
66
 *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}tpAutor"/&gt;
67
 *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}verAplic"/&gt;
68
 *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}dhEmi"/&gt;
69
 *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}tpNF"/&gt;
70
 *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}IE"/&gt;
71
 *                             &lt;element name="dest"&gt;
72
 *                               &lt;complexType&gt;
73
 *                                 &lt;complexContent&gt;
74
 *                                   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
75
 *                                     &lt;sequence&gt;
76
 *                                       &lt;element ref="{http://www.portalfiscal.inf.br/nfe}UF"/&gt;
77
 *                                       &lt;choice&gt;
78
 *                                         &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpj"/&gt;
79
 *                                         &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
80
 *                                         &lt;element name="idEstrangeiro"&gt;
81
 *                                           &lt;simpleType&gt;
82
 *                                             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
83
 *                                               &lt;whiteSpace value="preserve"/&gt;
84
 *                                               &lt;pattern value="([!-ÿ]{0}|[!-ÿ]{5,20})?"/&gt;
85
 *                                             &lt;/restriction&gt;
86
 *                                           &lt;/simpleType&gt;
87
 *                                         &lt;/element&gt;
88
 *                                       &lt;/choice&gt;
89
 *                                       &lt;element ref="{http://www.portalfiscal.inf.br/nfe}IE" minOccurs="0"/&gt;
90
 *                                       &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vNF"/&gt;
91
 *                                       &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vICMS"/&gt;
92
 *                                       &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vST"/&gt;
93
 *                                     &lt;/sequence&gt;
94
 *                                   &lt;/restriction&gt;
95
 *                                 &lt;/complexContent&gt;
96
 *                               &lt;/complexType&gt;
97
 *                             &lt;/element&gt;
98
 *                           &lt;/sequence&gt;
99
 *                           &lt;attribute name="versao" use="required"&gt;
100
 *                             &lt;simpleType&gt;
101
 *                               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
102
 *                                 &lt;whiteSpace value="preserve"/&gt;
103
 *                                 &lt;enumeration value="1.00"/&gt;
104
 *                               &lt;/restriction&gt;
105
 *                             &lt;/simpleType&gt;
106
 *                           &lt;/attribute&gt;
107
 *                         &lt;/restriction&gt;
108
 *                       &lt;/complexContent&gt;
109
 *                     &lt;/complexType&gt;
110
 *                   &lt;/element&gt;
111
 *                 &lt;/sequence&gt;
112
 *                 &lt;attribute name="Id" use="required"&gt;
113
 *                   &lt;simpleType&gt;
114
 *                     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID"&gt;
115
 *                       &lt;pattern value="ID[0-9]{52}"/&gt;
116
 *                     &lt;/restriction&gt;
117
 *                   &lt;/simpleType&gt;
118
 *                 &lt;/attribute&gt;
119
 *               &lt;/restriction&gt;
120
 *             &lt;/complexContent&gt;
121
 *           &lt;/complexType&gt;
122
 *         &lt;/element&gt;
123
 *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature"/&gt;
124
 *       &lt;/sequence&gt;
125
 *       &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/nfe}TVerEvento" /&gt;
126
 *     &lt;/restriction&gt;
127
 *   &lt;/complexContent&gt;
128
 * &lt;/complexType&gt;
129
 * </pre>
130
 *
131
 *
132
 */
133
@XmlAccessorType(XmlAccessType.FIELD)
134
@XmlType(name = "TEvento", namespace = "http://www.portalfiscal.inf.br/nfe", propOrder = {
135
    "infEvento",
136
    "signature"
137
})
138
public class TEvento {
139
 
140
    @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
141
    protected TEvento.InfEvento infEvento;
142
    @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
143
    protected SignatureType signature;
144
    @XmlAttribute(name = "versao", required = true)
145
    protected String versao;
146
 
147
    /**
148
     * Obtém o valor da propriedade infEvento.
149
     *
150
     * @return
151
     *     possible object is
152
     *     {@link TEvento.InfEvento }
153
     *    
154
     */
155
    public TEvento.InfEvento getInfEvento() {
156
        return infEvento;
157
    }
158
 
159
    /**
160
     * Define o valor da propriedade infEvento.
161
     *
162
     * @param value
163
     *     allowed object is
164
     *     {@link TEvento.InfEvento }
165
     *    
166
     */
167
    public void setInfEvento(TEvento.InfEvento value) {
168
        this.infEvento = value;
169
    }
170
 
171
    /**
172
     * Obtém o valor da propriedade signature.
173
     *
174
     * @return
175
     *     possible object is
176
     *     {@link SignatureType }
177
     *    
178
     */
179
    public SignatureType getSignature() {
180
        return signature;
181
    }
182
 
183
    /**
184
     * Define o valor da propriedade signature.
185
     *
186
     * @param value
187
     *     allowed object is
188
     *     {@link SignatureType }
189
     *    
190
     */
191
    public void setSignature(SignatureType value) {
192
        this.signature = value;
193
    }
194
 
195
    /**
196
     * Obtém o valor da propriedade versao.
197
     *
198
     * @return
199
     *     possible object is
200
     *     {@link String }
201
     *    
202
     */
203
    public String getVersao() {
204
        return versao;
205
    }
206
 
207
    /**
208
     * Define o valor da propriedade versao.
209
     *
210
     * @param value
211
     *     allowed object is
212
     *     {@link String }
213
     *    
214
     */
215
    public void setVersao(String value) {
216
        this.versao = value;
217
    }
218
 
219
 
220
    /**
221
     * <p>Classe Java de anonymous complex type.
222
     *
223
     * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
224
     *
225
     * <pre>
226
     * &lt;complexType&gt;
227
     *   &lt;complexContent&gt;
228
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
229
     *       &lt;sequence&gt;
230
     *         &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/nfe}TCOrgaoIBGE"/&gt;
231
     *         &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/nfe}TAmb"/&gt;
232
     *         &lt;choice&gt;
233
     *           &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpjOpc"/&gt;
234
     *           &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
235
     *         &lt;/choice&gt;
236
     *         &lt;element name="chNFe" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
237
     *         &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/nfe}TDateTimeUTC"/&gt;
238
     *         &lt;element name="tpEvento"&gt;
239
     *           &lt;simpleType&gt;
240
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
241
     *               &lt;whiteSpace value="preserve"/&gt;
242
     *               &lt;pattern value="[0-9]{6}"/&gt;
243
     *               &lt;enumeration value="110140"/&gt;
244
     *             &lt;/restriction&gt;
245
     *           &lt;/simpleType&gt;
246
     *         &lt;/element&gt;
247
     *         &lt;element name="nSeqEvento"&gt;
248
     *           &lt;simpleType&gt;
249
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
250
     *               &lt;whiteSpace value="preserve"/&gt;
251
     *               &lt;pattern value="[1-9]|[1][0-9]{0,1}|20"/&gt;
252
     *             &lt;/restriction&gt;
253
     *           &lt;/simpleType&gt;
254
     *         &lt;/element&gt;
255
     *         &lt;element name="verEvento"&gt;
256
     *           &lt;simpleType&gt;
257
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
258
     *               &lt;whiteSpace value="preserve"/&gt;
259
     *               &lt;enumeration value="1.00"/&gt;
260
     *             &lt;/restriction&gt;
261
     *           &lt;/simpleType&gt;
262
     *         &lt;/element&gt;
263
     *         &lt;element name="detEvento"&gt;
264
     *           &lt;complexType&gt;
265
     *             &lt;complexContent&gt;
266
     *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
267
     *                 &lt;sequence&gt;
268
     *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}descEvento"/&gt;
269
     *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}cOrgaoAutor"/&gt;
270
     *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}tpAutor"/&gt;
271
     *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}verAplic"/&gt;
272
     *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}dhEmi"/&gt;
273
     *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}tpNF"/&gt;
274
     *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}IE"/&gt;
275
     *                   &lt;element name="dest"&gt;
276
     *                     &lt;complexType&gt;
277
     *                       &lt;complexContent&gt;
278
     *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
279
     *                           &lt;sequence&gt;
280
     *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}UF"/&gt;
281
     *                             &lt;choice&gt;
282
     *                               &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpj"/&gt;
283
     *                               &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
284
     *                               &lt;element name="idEstrangeiro"&gt;
285
     *                                 &lt;simpleType&gt;
286
     *                                   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
287
     *                                     &lt;whiteSpace value="preserve"/&gt;
288
     *                                     &lt;pattern value="([!-ÿ]{0}|[!-ÿ]{5,20})?"/&gt;
289
     *                                   &lt;/restriction&gt;
290
     *                                 &lt;/simpleType&gt;
291
     *                               &lt;/element&gt;
292
     *                             &lt;/choice&gt;
293
     *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}IE" minOccurs="0"/&gt;
294
     *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vNF"/&gt;
295
     *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vICMS"/&gt;
296
     *                             &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vST"/&gt;
297
     *                           &lt;/sequence&gt;
298
     *                         &lt;/restriction&gt;
299
     *                       &lt;/complexContent&gt;
300
     *                     &lt;/complexType&gt;
301
     *                   &lt;/element&gt;
302
     *                 &lt;/sequence&gt;
303
     *                 &lt;attribute name="versao" use="required"&gt;
304
     *                   &lt;simpleType&gt;
305
     *                     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
306
     *                       &lt;whiteSpace value="preserve"/&gt;
307
     *                       &lt;enumeration value="1.00"/&gt;
308
     *                     &lt;/restriction&gt;
309
     *                   &lt;/simpleType&gt;
310
     *                 &lt;/attribute&gt;
311
     *               &lt;/restriction&gt;
312
     *             &lt;/complexContent&gt;
313
     *           &lt;/complexType&gt;
314
     *         &lt;/element&gt;
315
     *       &lt;/sequence&gt;
316
     *       &lt;attribute name="Id" use="required"&gt;
317
     *         &lt;simpleType&gt;
318
     *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID"&gt;
319
     *             &lt;pattern value="ID[0-9]{52}"/&gt;
320
     *           &lt;/restriction&gt;
321
     *         &lt;/simpleType&gt;
322
     *       &lt;/attribute&gt;
323
     *     &lt;/restriction&gt;
324
     *   &lt;/complexContent&gt;
325
     * &lt;/complexType&gt;
326
     * </pre>
327
     *
328
     *
329
     */
330
    @XmlAccessorType(XmlAccessType.FIELD)
331
    @XmlType(name = "", propOrder = {
332
        "cOrgao",
333
        "tpAmb",
334
        "cnpj",
335
        "cpf",
336
        "chNFe",
337
        "dhEvento",
338
        "tpEvento",
339
        "nSeqEvento",
340
        "verEvento",
341
        "detEvento"
342
    })
343
    public static class InfEvento {
344
 
345
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
346
        protected String cOrgao;
347
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
348
        protected String tpAmb;
349
        @XmlElement(name = "CNPJ", namespace = "http://www.portalfiscal.inf.br/nfe")
350
        protected String cnpj;
351
        @XmlElement(name = "CPF", namespace = "http://www.portalfiscal.inf.br/nfe")
352
        protected String cpf;
353
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
354
        protected String chNFe;
355
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
356
        protected String dhEvento;
357
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
358
        protected String tpEvento;
359
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
360
        protected String nSeqEvento;
361
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
362
        protected String verEvento;
363
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
364
        protected TEvento.InfEvento.DetEvento detEvento;
365
        @XmlAttribute(name = "Id", required = true)
366
        @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
367
        @XmlID
368
        protected String id;
369
 
370
        /**
371
         * Obtém o valor da propriedade cOrgao.
372
         *
373
         * @return
374
         *     possible object is
375
         *     {@link String }
376
         *    
377
         */
378
        public String getCOrgao() {
379
            return cOrgao;
380
        }
381
 
382
        /**
383
         * Define o valor da propriedade cOrgao.
384
         *
385
         * @param value
386
         *     allowed object is
387
         *     {@link String }
388
         *    
389
         */
390
        public void setCOrgao(String value) {
391
            this.cOrgao = value;
392
        }
393
 
394
        /**
395
         * Obtém o valor da propriedade tpAmb.
396
         *
397
         * @return
398
         *     possible object is
399
         *     {@link String }
400
         *    
401
         */
402
        public String getTpAmb() {
403
            return tpAmb;
404
        }
405
 
406
        /**
407
         * Define o valor da propriedade tpAmb.
408
         *
409
         * @param value
410
         *     allowed object is
411
         *     {@link String }
412
         *    
413
         */
414
        public void setTpAmb(String value) {
415
            this.tpAmb = value;
416
        }
417
 
418
        /**
419
         * Obtém o valor da propriedade cnpj.
420
         *
421
         * @return
422
         *     possible object is
423
         *     {@link String }
424
         *    
425
         */
426
        public String getCNPJ() {
427
            return cnpj;
428
        }
429
 
430
        /**
431
         * Define o valor da propriedade cnpj.
432
         *
433
         * @param value
434
         *     allowed object is
435
         *     {@link String }
436
         *    
437
         */
438
        public void setCNPJ(String value) {
439
            this.cnpj = value;
440
        }
441
 
442
        /**
443
         * Obtém o valor da propriedade cpf.
444
         *
445
         * @return
446
         *     possible object is
447
         *     {@link String }
448
         *    
449
         */
450
        public String getCPF() {
451
            return cpf;
452
        }
453
 
454
        /**
455
         * Define o valor da propriedade cpf.
456
         *
457
         * @param value
458
         *     allowed object is
459
         *     {@link String }
460
         *    
461
         */
462
        public void setCPF(String value) {
463
            this.cpf = value;
464
        }
465
 
466
        /**
467
         * Obtém o valor da propriedade chNFe.
468
         *
469
         * @return
470
         *     possible object is
471
         *     {@link String }
472
         *    
473
         */
474
        public String getChNFe() {
475
            return chNFe;
476
        }
477
 
478
        /**
479
         * Define o valor da propriedade chNFe.
480
         *
481
         * @param value
482
         *     allowed object is
483
         *     {@link String }
484
         *    
485
         */
486
        public void setChNFe(String value) {
487
            this.chNFe = value;
488
        }
489
 
490
        /**
491
         * Obtém o valor da propriedade dhEvento.
492
         *
493
         * @return
494
         *     possible object is
495
         *     {@link String }
496
         *    
497
         */
498
        public String getDhEvento() {
499
            return dhEvento;
500
        }
501
 
502
        /**
503
         * Define o valor da propriedade dhEvento.
504
         *
505
         * @param value
506
         *     allowed object is
507
         *     {@link String }
508
         *    
509
         */
510
        public void setDhEvento(String value) {
511
            this.dhEvento = value;
512
        }
513
 
514
        /**
515
         * Obtém o valor da propriedade tpEvento.
516
         *
517
         * @return
518
         *     possible object is
519
         *     {@link String }
520
         *    
521
         */
522
        public String getTpEvento() {
523
            return tpEvento;
524
        }
525
 
526
        /**
527
         * Define o valor da propriedade tpEvento.
528
         *
529
         * @param value
530
         *     allowed object is
531
         *     {@link String }
532
         *    
533
         */
534
        public void setTpEvento(String value) {
535
            this.tpEvento = value;
536
        }
537
 
538
        /**
539
         * Obtém o valor da propriedade nSeqEvento.
540
         *
541
         * @return
542
         *     possible object is
543
         *     {@link String }
544
         *    
545
         */
546
        public String getNSeqEvento() {
547
            return nSeqEvento;
548
        }
549
 
550
        /**
551
         * Define o valor da propriedade nSeqEvento.
552
         *
553
         * @param value
554
         *     allowed object is
555
         *     {@link String }
556
         *    
557
         */
558
        public void setNSeqEvento(String value) {
559
            this.nSeqEvento = value;
560
        }
561
 
562
        /**
563
         * Obtém o valor da propriedade verEvento.
564
         *
565
         * @return
566
         *     possible object is
567
         *     {@link String }
568
         *    
569
         */
570
        public String getVerEvento() {
571
            return verEvento;
572
        }
573
 
574
        /**
575
         * Define o valor da propriedade verEvento.
576
         *
577
         * @param value
578
         *     allowed object is
579
         *     {@link String }
580
         *    
581
         */
582
        public void setVerEvento(String value) {
583
            this.verEvento = value;
584
        }
585
 
586
        /**
587
         * Obtém o valor da propriedade detEvento.
588
         *
589
         * @return
590
         *     possible object is
591
         *     {@link TEvento.InfEvento.DetEvento }
592
         *    
593
         */
594
        public TEvento.InfEvento.DetEvento getDetEvento() {
595
            return detEvento;
596
        }
597
 
598
        /**
599
         * Define o valor da propriedade detEvento.
600
         *
601
         * @param value
602
         *     allowed object is
603
         *     {@link TEvento.InfEvento.DetEvento }
604
         *    
605
         */
606
        public void setDetEvento(TEvento.InfEvento.DetEvento value) {
607
            this.detEvento = value;
608
        }
609
 
610
        /**
611
         * Obtém o valor da propriedade id.
612
         *
613
         * @return
614
         *     possible object is
615
         *     {@link String }
616
         *    
617
         */
618
        public String getId() {
619
            return id;
620
        }
621
 
622
        /**
623
         * Define o valor da propriedade id.
624
         *
625
         * @param value
626
         *     allowed object is
627
         *     {@link String }
628
         *    
629
         */
630
        public void setId(String value) {
631
            this.id = value;
632
        }
633
 
634
 
635
        /**
636
         * <p>Classe Java de anonymous complex type.
637
         *
638
         * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
639
         *
640
         * <pre>
641
         * &lt;complexType&gt;
642
         *   &lt;complexContent&gt;
643
         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
644
         *       &lt;sequence&gt;
645
         *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}descEvento"/&gt;
646
         *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}cOrgaoAutor"/&gt;
647
         *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}tpAutor"/&gt;
648
         *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}verAplic"/&gt;
649
         *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}dhEmi"/&gt;
650
         *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}tpNF"/&gt;
651
         *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}IE"/&gt;
652
         *         &lt;element name="dest"&gt;
653
         *           &lt;complexType&gt;
654
         *             &lt;complexContent&gt;
655
         *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
656
         *                 &lt;sequence&gt;
657
         *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}UF"/&gt;
658
         *                   &lt;choice&gt;
659
         *                     &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpj"/&gt;
660
         *                     &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
661
         *                     &lt;element name="idEstrangeiro"&gt;
662
         *                       &lt;simpleType&gt;
663
         *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
664
         *                           &lt;whiteSpace value="preserve"/&gt;
665
         *                           &lt;pattern value="([!-ÿ]{0}|[!-ÿ]{5,20})?"/&gt;
666
         *                         &lt;/restriction&gt;
667
         *                       &lt;/simpleType&gt;
668
         *                     &lt;/element&gt;
669
         *                   &lt;/choice&gt;
670
         *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}IE" minOccurs="0"/&gt;
671
         *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vNF"/&gt;
672
         *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vICMS"/&gt;
673
         *                   &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vST"/&gt;
674
         *                 &lt;/sequence&gt;
675
         *               &lt;/restriction&gt;
676
         *             &lt;/complexContent&gt;
677
         *           &lt;/complexType&gt;
678
         *         &lt;/element&gt;
679
         *       &lt;/sequence&gt;
680
         *       &lt;attribute name="versao" use="required"&gt;
681
         *         &lt;simpleType&gt;
682
         *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
683
         *             &lt;whiteSpace value="preserve"/&gt;
684
         *             &lt;enumeration value="1.00"/&gt;
685
         *           &lt;/restriction&gt;
686
         *         &lt;/simpleType&gt;
687
         *       &lt;/attribute&gt;
688
         *     &lt;/restriction&gt;
689
         *   &lt;/complexContent&gt;
690
         * &lt;/complexType&gt;
691
         * </pre>
692
         *
693
         *
694
         */
695
        @XmlAccessorType(XmlAccessType.FIELD)
696
        @XmlType(name = "", propOrder = {
697
            "descEvento",
698
            "cOrgaoAutor",
699
            "tpAutor",
700
            "verAplic",
701
            "dhEmi",
702
            "tpNF",
703
            "ie",
704
            "dest"
705
        })
706
        public static class DetEvento {
707
 
708
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
709
            protected String descEvento;
710
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
711
            protected String cOrgaoAutor;
712
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
713
            protected String tpAutor;
714
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
715
            protected String verAplic;
716
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
717
            protected String dhEmi;
718
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
719
            protected String tpNF;
720
            @XmlElement(name = "IE", namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
721
            protected String ie;
722
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
723
            protected TEvento.InfEvento.DetEvento.Dest dest;
724
            @XmlAttribute(name = "versao", required = true)
725
            protected String versao;
726
 
727
            /**
728
             * Obtém o valor da propriedade descEvento.
729
             *
730
             * @return
731
             *     possible object is
732
             *     {@link String }
733
             *    
734
             */
735
            public String getDescEvento() {
736
                return descEvento;
737
            }
738
 
739
            /**
740
             * Define o valor da propriedade descEvento.
741
             *
742
             * @param value
743
             *     allowed object is
744
             *     {@link String }
745
             *    
746
             */
747
            public void setDescEvento(String value) {
748
                this.descEvento = value;
749
            }
750
 
751
            /**
752
             * Obtém o valor da propriedade cOrgaoAutor.
753
             *
754
             * @return
755
             *     possible object is
756
             *     {@link String }
757
             *    
758
             */
759
            public String getCOrgaoAutor() {
760
                return cOrgaoAutor;
761
            }
762
 
763
            /**
764
             * Define o valor da propriedade cOrgaoAutor.
765
             *
766
             * @param value
767
             *     allowed object is
768
             *     {@link String }
769
             *    
770
             */
771
            public void setCOrgaoAutor(String value) {
772
                this.cOrgaoAutor = value;
773
            }
774
 
775
            /**
776
             * Obtém o valor da propriedade tpAutor.
777
             *
778
             * @return
779
             *     possible object is
780
             *     {@link String }
781
             *    
782
             */
783
            public String getTpAutor() {
784
                return tpAutor;
785
            }
786
 
787
            /**
788
             * Define o valor da propriedade tpAutor.
789
             *
790
             * @param value
791
             *     allowed object is
792
             *     {@link String }
793
             *    
794
             */
795
            public void setTpAutor(String value) {
796
                this.tpAutor = value;
797
            }
798
 
799
            /**
800
             * Obtém o valor da propriedade verAplic.
801
             *
802
             * @return
803
             *     possible object is
804
             *     {@link String }
805
             *    
806
             */
807
            public String getVerAplic() {
808
                return verAplic;
809
            }
810
 
811
            /**
812
             * Define o valor da propriedade verAplic.
813
             *
814
             * @param value
815
             *     allowed object is
816
             *     {@link String }
817
             *    
818
             */
819
            public void setVerAplic(String value) {
820
                this.verAplic = value;
821
            }
822
 
823
            /**
824
             * Obtém o valor da propriedade dhEmi.
825
             *
826
             * @return
827
             *     possible object is
828
             *     {@link String }
829
             *    
830
             */
831
            public String getDhEmi() {
832
                return dhEmi;
833
            }
834
 
835
            /**
836
             * Define o valor da propriedade dhEmi.
837
             *
838
             * @param value
839
             *     allowed object is
840
             *     {@link String }
841
             *    
842
             */
843
            public void setDhEmi(String value) {
844
                this.dhEmi = value;
845
            }
846
 
847
            /**
848
             * Obtém o valor da propriedade tpNF.
849
             *
850
             * @return
851
             *     possible object is
852
             *     {@link String }
853
             *    
854
             */
855
            public String getTpNF() {
856
                return tpNF;
857
            }
858
 
859
            /**
860
             * Define o valor da propriedade tpNF.
861
             *
862
             * @param value
863
             *     allowed object is
864
             *     {@link String }
865
             *    
866
             */
867
            public void setTpNF(String value) {
868
                this.tpNF = value;
869
            }
870
 
871
            /**
872
             * Obtém o valor da propriedade ie.
873
             *
874
             * @return
875
             *     possible object is
876
             *     {@link String }
877
             *    
878
             */
879
            public String getIE() {
880
                return ie;
881
            }
882
 
883
            /**
884
             * Define o valor da propriedade ie.
885
             *
886
             * @param value
887
             *     allowed object is
888
             *     {@link String }
889
             *    
890
             */
891
            public void setIE(String value) {
892
                this.ie = value;
893
            }
894
 
895
            /**
896
             * Obtém o valor da propriedade dest.
897
             *
898
             * @return
899
             *     possible object is
900
             *     {@link TEvento.InfEvento.DetEvento.Dest }
901
             *    
902
             */
903
            public TEvento.InfEvento.DetEvento.Dest getDest() {
904
                return dest;
905
            }
906
 
907
            /**
908
             * Define o valor da propriedade dest.
909
             *
910
             * @param value
911
             *     allowed object is
912
             *     {@link TEvento.InfEvento.DetEvento.Dest }
913
             *    
914
             */
915
            public void setDest(TEvento.InfEvento.DetEvento.Dest value) {
916
                this.dest = value;
917
            }
918
 
919
            /**
920
             * Obtém o valor da propriedade versao.
921
             *
922
             * @return
923
             *     possible object is
924
             *     {@link String }
925
             *    
926
             */
927
            public String getVersao() {
928
                return versao;
929
            }
930
 
931
            /**
932
             * Define o valor da propriedade versao.
933
             *
934
             * @param value
935
             *     allowed object is
936
             *     {@link String }
937
             *    
938
             */
939
            public void setVersao(String value) {
940
                this.versao = value;
941
            }
942
 
943
 
944
            /**
945
             * <p>Classe Java de anonymous complex type.
946
             *
947
             * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
948
             *
949
             * <pre>
950
             * &lt;complexType&gt;
951
             *   &lt;complexContent&gt;
952
             *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
953
             *       &lt;sequence&gt;
954
             *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}UF"/&gt;
955
             *         &lt;choice&gt;
956
             *           &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpj"/&gt;
957
             *           &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
958
             *           &lt;element name="idEstrangeiro"&gt;
959
             *             &lt;simpleType&gt;
960
             *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
961
             *                 &lt;whiteSpace value="preserve"/&gt;
962
             *                 &lt;pattern value="([!-ÿ]{0}|[!-ÿ]{5,20})?"/&gt;
963
             *               &lt;/restriction&gt;
964
             *             &lt;/simpleType&gt;
965
             *           &lt;/element&gt;
966
             *         &lt;/choice&gt;
967
             *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}IE" minOccurs="0"/&gt;
968
             *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vNF"/&gt;
969
             *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vICMS"/&gt;
970
             *         &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vST"/&gt;
971
             *       &lt;/sequence&gt;
972
             *     &lt;/restriction&gt;
973
             *   &lt;/complexContent&gt;
974
             * &lt;/complexType&gt;
975
             * </pre>
976
             *
977
             *
978
             */
979
            @XmlAccessorType(XmlAccessType.FIELD)
980
            @XmlType(name = "", propOrder = {
981
                "uf",
982
                "cnpj",
983
                "cpf",
984
                "idEstrangeiro",
985
                "ie",
986
                "vnf",
987
                "vicms",
988
                "vst"
989
            })
990
            public static class Dest {
991
 
992
                @XmlElement(name = "UF", namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
993
                @XmlSchemaType(name = "string")
994
                protected TUf uf;
995
                @XmlElement(name = "CNPJ", namespace = "http://www.portalfiscal.inf.br/nfe")
996
                protected String cnpj;
997
                @XmlElement(name = "CPF", namespace = "http://www.portalfiscal.inf.br/nfe")
998
                protected String cpf;
999
                @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe")
1000
                protected String idEstrangeiro;
1001
                @XmlElement(name = "IE", namespace = "http://www.portalfiscal.inf.br/nfe")
1002
                protected String ie;
1003
                @XmlElement(name = "vNF", namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
1004
                protected String vnf;
1005
                @XmlElement(name = "vICMS", namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
1006
                protected String vicms;
1007
                @XmlElement(name = "vST", namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
1008
                protected String vst;
1009
 
1010
                /**
1011
                 * Obtém o valor da propriedade uf.
1012
                 *
1013
                 * @return
1014
                 *     possible object is
1015
                 *     {@link TUf }
1016
                 *    
1017
                 */
1018
                public TUf getUF() {
1019
                    return uf;
1020
                }
1021
 
1022
                /**
1023
                 * Define o valor da propriedade uf.
1024
                 *
1025
                 * @param value
1026
                 *     allowed object is
1027
                 *     {@link TUf }
1028
                 *    
1029
                 */
1030
                public void setUF(TUf value) {
1031
                    this.uf = value;
1032
                }
1033
 
1034
                /**
1035
                 * Obtém o valor da propriedade cnpj.
1036
                 *
1037
                 * @return
1038
                 *     possible object is
1039
                 *     {@link String }
1040
                 *    
1041
                 */
1042
                public String getCNPJ() {
1043
                    return cnpj;
1044
                }
1045
 
1046
                /**
1047
                 * Define o valor da propriedade cnpj.
1048
                 *
1049
                 * @param value
1050
                 *     allowed object is
1051
                 *     {@link String }
1052
                 *    
1053
                 */
1054
                public void setCNPJ(String value) {
1055
                    this.cnpj = value;
1056
                }
1057
 
1058
                /**
1059
                 * Obtém o valor da propriedade cpf.
1060
                 *
1061
                 * @return
1062
                 *     possible object is
1063
                 *     {@link String }
1064
                 *    
1065
                 */
1066
                public String getCPF() {
1067
                    return cpf;
1068
                }
1069
 
1070
                /**
1071
                 * Define o valor da propriedade cpf.
1072
                 *
1073
                 * @param value
1074
                 *     allowed object is
1075
                 *     {@link String }
1076
                 *    
1077
                 */
1078
                public void setCPF(String value) {
1079
                    this.cpf = value;
1080
                }
1081
 
1082
                /**
1083
                 * Obtém o valor da propriedade idEstrangeiro.
1084
                 *
1085
                 * @return
1086
                 *     possible object is
1087
                 *     {@link String }
1088
                 *    
1089
                 */
1090
                public String getIdEstrangeiro() {
1091
                    return idEstrangeiro;
1092
                }
1093
 
1094
                /**
1095
                 * Define o valor da propriedade idEstrangeiro.
1096
                 *
1097
                 * @param value
1098
                 *     allowed object is
1099
                 *     {@link String }
1100
                 *    
1101
                 */
1102
                public void setIdEstrangeiro(String value) {
1103
                    this.idEstrangeiro = value;
1104
                }
1105
 
1106
                /**
1107
                 * Obtém o valor da propriedade ie.
1108
                 *
1109
                 * @return
1110
                 *     possible object is
1111
                 *     {@link String }
1112
                 *    
1113
                 */
1114
                public String getIE() {
1115
                    return ie;
1116
                }
1117
 
1118
                /**
1119
                 * Define o valor da propriedade ie.
1120
                 *
1121
                 * @param value
1122
                 *     allowed object is
1123
                 *     {@link String }
1124
                 *    
1125
                 */
1126
                public void setIE(String value) {
1127
                    this.ie = value;
1128
                }
1129
 
1130
                /**
1131
                 * Obtém o valor da propriedade vnf.
1132
                 *
1133
                 * @return
1134
                 *     possible object is
1135
                 *     {@link String }
1136
                 *    
1137
                 */
1138
                public String getVNF() {
1139
                    return vnf;
1140
                }
1141
 
1142
                /**
1143
                 * Define o valor da propriedade vnf.
1144
                 *
1145
                 * @param value
1146
                 *     allowed object is
1147
                 *     {@link String }
1148
                 *    
1149
                 */
1150
                public void setVNF(String value) {
1151
                    this.vnf = value;
1152
                }
1153
 
1154
                /**
1155
                 * Obtém o valor da propriedade vicms.
1156
                 *
1157
                 * @return
1158
                 *     possible object is
1159
                 *     {@link String }
1160
                 *    
1161
                 */
1162
                public String getVICMS() {
1163
                    return vicms;
1164
                }
1165
 
1166
                /**
1167
                 * Define o valor da propriedade vicms.
1168
                 *
1169
                 * @param value
1170
                 *     allowed object is
1171
                 *     {@link String }
1172
                 *    
1173
                 */
1174
                public void setVICMS(String value) {
1175
                    this.vicms = value;
1176
                }
1177
 
1178
                /**
1179
                 * Obtém o valor da propriedade vst.
1180
                 *
1181
                 * @return
1182
                 *     possible object is
1183
                 *     {@link String }
1184
                 *    
1185
                 */
1186
                public String getVST() {
1187
                    return vst;
1188
                }
1189
 
1190
                /**
1191
                 * Define o valor da propriedade vst.
1192
                 *
1193
                 * @param value
1194
                 *     allowed object is
1195
                 *     {@link String }
1196
                 *    
1197
                 */
1198
                public void setVST(String value) {
1199
                    this.vst = value;
1200
                }
1201
 
1202
            }
1203
 
1204
        }
1205
 
1206
    }
1207
 
1208
}