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.eventoCancSubst;
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.XmlID;
9
import javax.xml.bind.annotation.XmlType;
10
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
11
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12
 
13
 
14
/**
15
 * Tipo Evento
16
 *
17
 * <p>Classe Java de TEvento complex type.
18
 *
19
 * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
20
 *
21
 * <pre>
22
 * &lt;complexType name="TEvento"&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="infEvento"&gt;
27
 *           &lt;complexType&gt;
28
 *             &lt;complexContent&gt;
29
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
30
 *                 &lt;sequence&gt;
31
 *                   &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/nfe}TCOrgaoIBGE"/&gt;
32
 *                   &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/nfe}TAmb"/&gt;
33
 *                   &lt;choice&gt;
34
 *                     &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpjOpc"/&gt;
35
 *                     &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
36
 *                   &lt;/choice&gt;
37
 *                   &lt;element name="chNFe" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
38
 *                   &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/nfe}TDateTimeUTC"/&gt;
39
 *                   &lt;element name="tpEvento"&gt;
40
 *                     &lt;simpleType&gt;
41
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
42
 *                         &lt;whiteSpace value="preserve"/&gt;
43
 *                         &lt;pattern value="[0-9]{6}"/&gt;
44
 *                         &lt;enumeration value="110112"/&gt;
45
 *                       &lt;/restriction&gt;
46
 *                     &lt;/simpleType&gt;
47
 *                   &lt;/element&gt;
48
 *                   &lt;element name="nSeqEvento"&gt;
49
 *                     &lt;simpleType&gt;
50
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
51
 *                         &lt;whiteSpace value="preserve"/&gt;
52
 *                         &lt;pattern value="[1-9]|[1][0-9]{0,1}|20"/&gt;
53
 *                       &lt;/restriction&gt;
54
 *                     &lt;/simpleType&gt;
55
 *                   &lt;/element&gt;
56
 *                   &lt;element name="verEvento"&gt;
57
 *                     &lt;simpleType&gt;
58
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
59
 *                         &lt;whiteSpace value="preserve"/&gt;
60
 *                         &lt;enumeration value="1.00"/&gt;
61
 *                       &lt;/restriction&gt;
62
 *                     &lt;/simpleType&gt;
63
 *                   &lt;/element&gt;
64
 *                   &lt;element name="detEvento"&gt;
65
 *                     &lt;complexType&gt;
66
 *                       &lt;complexContent&gt;
67
 *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
68
 *                           &lt;sequence&gt;
69
 *                             &lt;element name="descEvento"&gt;
70
 *                               &lt;simpleType&gt;
71
 *                                 &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
72
 *                                   &lt;whiteSpace value="preserve"/&gt;
73
 *                                   &lt;enumeration value="Cancelamento por substituicao"/&gt;
74
 *                                 &lt;/restriction&gt;
75
 *                               &lt;/simpleType&gt;
76
 *                             &lt;/element&gt;
77
 *                             &lt;element name="cOrgaoAutor" type="{http://www.portalfiscal.inf.br/nfe}TCodUfIBGE"/&gt;
78
 *                             &lt;element name="tpAutor"&gt;
79
 *                               &lt;simpleType&gt;
80
 *                                 &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
81
 *                                   &lt;enumeration value="1"/&gt;
82
 *                                 &lt;/restriction&gt;
83
 *                               &lt;/simpleType&gt;
84
 *                             &lt;/element&gt;
85
 *                             &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/nfe}TVerAplic"/&gt;
86
 *                             &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/nfe}TProt"/&gt;
87
 *                             &lt;element name="xJust" type="{http://www.portalfiscal.inf.br/nfe}TJust"/&gt;
88
 *                             &lt;element name="chNFeRef" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
89
 *                           &lt;/sequence&gt;
90
 *                           &lt;attribute name="versao" use="required"&gt;
91
 *                             &lt;simpleType&gt;
92
 *                               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
93
 *                                 &lt;whiteSpace value="preserve"/&gt;
94
 *                                 &lt;enumeration value="1.00"/&gt;
95
 *                               &lt;/restriction&gt;
96
 *                             &lt;/simpleType&gt;
97
 *                           &lt;/attribute&gt;
98
 *                         &lt;/restriction&gt;
99
 *                       &lt;/complexContent&gt;
100
 *                     &lt;/complexType&gt;
101
 *                   &lt;/element&gt;
102
 *                 &lt;/sequence&gt;
103
 *                 &lt;attribute name="Id" use="required"&gt;
104
 *                   &lt;simpleType&gt;
105
 *                     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID"&gt;
106
 *                       &lt;pattern value="ID[0-9]{52}"/&gt;
107
 *                     &lt;/restriction&gt;
108
 *                   &lt;/simpleType&gt;
109
 *                 &lt;/attribute&gt;
110
 *               &lt;/restriction&gt;
111
 *             &lt;/complexContent&gt;
112
 *           &lt;/complexType&gt;
113
 *         &lt;/element&gt;
114
 *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature"/&gt;
115
 *       &lt;/sequence&gt;
116
 *       &lt;attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/nfe}TVerEvento" /&gt;
117
 *     &lt;/restriction&gt;
118
 *   &lt;/complexContent&gt;
119
 * &lt;/complexType&gt;
120
 * </pre>
121
 *
122
 *
123
 */
124
@XmlAccessorType(XmlAccessType.FIELD)
125
@XmlType(name = "TEvento", namespace = "http://www.portalfiscal.inf.br/nfe", propOrder = {
126
    "infEvento",
127
    "signature"
128
})
129
public class TEvento {
130
 
131
    @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
132
    protected TEvento.InfEvento infEvento;
133
    @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
134
    protected SignatureType signature;
135
    @XmlAttribute(name = "versao", required = true)
136
    protected String versao;
137
 
138
    /**
139
     * Obtém o valor da propriedade infEvento.
140
     *
141
     * @return
142
     *     possible object is
143
     *     {@link TEvento.InfEvento }
144
     *    
145
     */
146
    public TEvento.InfEvento getInfEvento() {
147
        return infEvento;
148
    }
149
 
150
    /**
151
     * Define o valor da propriedade infEvento.
152
     *
153
     * @param value
154
     *     allowed object is
155
     *     {@link TEvento.InfEvento }
156
     *    
157
     */
158
    public void setInfEvento(TEvento.InfEvento value) {
159
        this.infEvento = value;
160
    }
161
 
162
    /**
163
     * Obtém o valor da propriedade signature.
164
     *
165
     * @return
166
     *     possible object is
167
     *     {@link SignatureType }
168
     *    
169
     */
170
    public SignatureType getSignature() {
171
        return signature;
172
    }
173
 
174
    /**
175
     * Define o valor da propriedade signature.
176
     *
177
     * @param value
178
     *     allowed object is
179
     *     {@link SignatureType }
180
     *    
181
     */
182
    public void setSignature(SignatureType value) {
183
        this.signature = value;
184
    }
185
 
186
    /**
187
     * Obtém o valor da propriedade versao.
188
     *
189
     * @return
190
     *     possible object is
191
     *     {@link String }
192
     *    
193
     */
194
    public String getVersao() {
195
        return versao;
196
    }
197
 
198
    /**
199
     * Define o valor da propriedade versao.
200
     *
201
     * @param value
202
     *     allowed object is
203
     *     {@link String }
204
     *    
205
     */
206
    public void setVersao(String value) {
207
        this.versao = value;
208
    }
209
 
210
 
211
    /**
212
     * <p>Classe Java de anonymous complex type.
213
     *
214
     * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
215
     *
216
     * <pre>
217
     * &lt;complexType&gt;
218
     *   &lt;complexContent&gt;
219
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
220
     *       &lt;sequence&gt;
221
     *         &lt;element name="cOrgao" type="{http://www.portalfiscal.inf.br/nfe}TCOrgaoIBGE"/&gt;
222
     *         &lt;element name="tpAmb" type="{http://www.portalfiscal.inf.br/nfe}TAmb"/&gt;
223
     *         &lt;choice&gt;
224
     *           &lt;element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpjOpc"/&gt;
225
     *           &lt;element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/&gt;
226
     *         &lt;/choice&gt;
227
     *         &lt;element name="chNFe" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
228
     *         &lt;element name="dhEvento" type="{http://www.portalfiscal.inf.br/nfe}TDateTimeUTC"/&gt;
229
     *         &lt;element name="tpEvento"&gt;
230
     *           &lt;simpleType&gt;
231
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
232
     *               &lt;whiteSpace value="preserve"/&gt;
233
     *               &lt;pattern value="[0-9]{6}"/&gt;
234
     *               &lt;enumeration value="110112"/&gt;
235
     *             &lt;/restriction&gt;
236
     *           &lt;/simpleType&gt;
237
     *         &lt;/element&gt;
238
     *         &lt;element name="nSeqEvento"&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="[1-9]|[1][0-9]{0,1}|20"/&gt;
243
     *             &lt;/restriction&gt;
244
     *           &lt;/simpleType&gt;
245
     *         &lt;/element&gt;
246
     *         &lt;element name="verEvento"&gt;
247
     *           &lt;simpleType&gt;
248
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
249
     *               &lt;whiteSpace value="preserve"/&gt;
250
     *               &lt;enumeration value="1.00"/&gt;
251
     *             &lt;/restriction&gt;
252
     *           &lt;/simpleType&gt;
253
     *         &lt;/element&gt;
254
     *         &lt;element name="detEvento"&gt;
255
     *           &lt;complexType&gt;
256
     *             &lt;complexContent&gt;
257
     *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
258
     *                 &lt;sequence&gt;
259
     *                   &lt;element name="descEvento"&gt;
260
     *                     &lt;simpleType&gt;
261
     *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
262
     *                         &lt;whiteSpace value="preserve"/&gt;
263
     *                         &lt;enumeration value="Cancelamento por substituicao"/&gt;
264
     *                       &lt;/restriction&gt;
265
     *                     &lt;/simpleType&gt;
266
     *                   &lt;/element&gt;
267
     *                   &lt;element name="cOrgaoAutor" type="{http://www.portalfiscal.inf.br/nfe}TCodUfIBGE"/&gt;
268
     *                   &lt;element name="tpAutor"&gt;
269
     *                     &lt;simpleType&gt;
270
     *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
271
     *                         &lt;enumeration value="1"/&gt;
272
     *                       &lt;/restriction&gt;
273
     *                     &lt;/simpleType&gt;
274
     *                   &lt;/element&gt;
275
     *                   &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/nfe}TVerAplic"/&gt;
276
     *                   &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/nfe}TProt"/&gt;
277
     *                   &lt;element name="xJust" type="{http://www.portalfiscal.inf.br/nfe}TJust"/&gt;
278
     *                   &lt;element name="chNFeRef" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
279
     *                 &lt;/sequence&gt;
280
     *                 &lt;attribute name="versao" use="required"&gt;
281
     *                   &lt;simpleType&gt;
282
     *                     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
283
     *                       &lt;whiteSpace value="preserve"/&gt;
284
     *                       &lt;enumeration value="1.00"/&gt;
285
     *                     &lt;/restriction&gt;
286
     *                   &lt;/simpleType&gt;
287
     *                 &lt;/attribute&gt;
288
     *               &lt;/restriction&gt;
289
     *             &lt;/complexContent&gt;
290
     *           &lt;/complexType&gt;
291
     *         &lt;/element&gt;
292
     *       &lt;/sequence&gt;
293
     *       &lt;attribute name="Id" use="required"&gt;
294
     *         &lt;simpleType&gt;
295
     *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}ID"&gt;
296
     *             &lt;pattern value="ID[0-9]{52}"/&gt;
297
     *           &lt;/restriction&gt;
298
     *         &lt;/simpleType&gt;
299
     *       &lt;/attribute&gt;
300
     *     &lt;/restriction&gt;
301
     *   &lt;/complexContent&gt;
302
     * &lt;/complexType&gt;
303
     * </pre>
304
     *
305
     *
306
     */
307
    @XmlAccessorType(XmlAccessType.FIELD)
308
    @XmlType(name = "", propOrder = {
309
        "cOrgao",
310
        "tpAmb",
311
        "cnpj",
312
        "cpf",
313
        "chNFe",
314
        "dhEvento",
315
        "tpEvento",
316
        "nSeqEvento",
317
        "verEvento",
318
        "detEvento"
319
    })
320
    public static class InfEvento {
321
 
322
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
323
        protected String cOrgao;
324
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
325
        protected String tpAmb;
326
        @XmlElement(name = "CNPJ", namespace = "http://www.portalfiscal.inf.br/nfe")
327
        protected String cnpj;
328
        @XmlElement(name = "CPF", namespace = "http://www.portalfiscal.inf.br/nfe")
329
        protected String cpf;
330
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
331
        protected String chNFe;
332
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
333
        protected String dhEvento;
334
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
335
        protected String tpEvento;
336
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
337
        protected String nSeqEvento;
338
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
339
        protected String verEvento;
340
        @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
341
        protected TEvento.InfEvento.DetEvento detEvento;
342
        @XmlAttribute(name = "Id", required = true)
343
        @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
344
        @XmlID
345
        protected String id;
346
 
347
        /**
348
         * Obtém o valor da propriedade cOrgao.
349
         *
350
         * @return
351
         *     possible object is
352
         *     {@link String }
353
         *    
354
         */
355
        public String getCOrgao() {
356
            return cOrgao;
357
        }
358
 
359
        /**
360
         * Define o valor da propriedade cOrgao.
361
         *
362
         * @param value
363
         *     allowed object is
364
         *     {@link String }
365
         *    
366
         */
367
        public void setCOrgao(String value) {
368
            this.cOrgao = value;
369
        }
370
 
371
        /**
372
         * Obtém o valor da propriedade tpAmb.
373
         *
374
         * @return
375
         *     possible object is
376
         *     {@link String }
377
         *    
378
         */
379
        public String getTpAmb() {
380
            return tpAmb;
381
        }
382
 
383
        /**
384
         * Define o valor da propriedade tpAmb.
385
         *
386
         * @param value
387
         *     allowed object is
388
         *     {@link String }
389
         *    
390
         */
391
        public void setTpAmb(String value) {
392
            this.tpAmb = value;
393
        }
394
 
395
        /**
396
         * Obtém o valor da propriedade cnpj.
397
         *
398
         * @return
399
         *     possible object is
400
         *     {@link String }
401
         *    
402
         */
403
        public String getCNPJ() {
404
            return cnpj;
405
        }
406
 
407
        /**
408
         * Define o valor da propriedade cnpj.
409
         *
410
         * @param value
411
         *     allowed object is
412
         *     {@link String }
413
         *    
414
         */
415
        public void setCNPJ(String value) {
416
            this.cnpj = value;
417
        }
418
 
419
        /**
420
         * Obtém o valor da propriedade cpf.
421
         *
422
         * @return
423
         *     possible object is
424
         *     {@link String }
425
         *    
426
         */
427
        public String getCPF() {
428
            return cpf;
429
        }
430
 
431
        /**
432
         * Define o valor da propriedade cpf.
433
         *
434
         * @param value
435
         *     allowed object is
436
         *     {@link String }
437
         *    
438
         */
439
        public void setCPF(String value) {
440
            this.cpf = value;
441
        }
442
 
443
        /**
444
         * Obtém o valor da propriedade chNFe.
445
         *
446
         * @return
447
         *     possible object is
448
         *     {@link String }
449
         *    
450
         */
451
        public String getChNFe() {
452
            return chNFe;
453
        }
454
 
455
        /**
456
         * Define o valor da propriedade chNFe.
457
         *
458
         * @param value
459
         *     allowed object is
460
         *     {@link String }
461
         *    
462
         */
463
        public void setChNFe(String value) {
464
            this.chNFe = value;
465
        }
466
 
467
        /**
468
         * Obtém o valor da propriedade dhEvento.
469
         *
470
         * @return
471
         *     possible object is
472
         *     {@link String }
473
         *    
474
         */
475
        public String getDhEvento() {
476
            return dhEvento;
477
        }
478
 
479
        /**
480
         * Define o valor da propriedade dhEvento.
481
         *
482
         * @param value
483
         *     allowed object is
484
         *     {@link String }
485
         *    
486
         */
487
        public void setDhEvento(String value) {
488
            this.dhEvento = value;
489
        }
490
 
491
        /**
492
         * Obtém o valor da propriedade tpEvento.
493
         *
494
         * @return
495
         *     possible object is
496
         *     {@link String }
497
         *    
498
         */
499
        public String getTpEvento() {
500
            return tpEvento;
501
        }
502
 
503
        /**
504
         * Define o valor da propriedade tpEvento.
505
         *
506
         * @param value
507
         *     allowed object is
508
         *     {@link String }
509
         *    
510
         */
511
        public void setTpEvento(String value) {
512
            this.tpEvento = value;
513
        }
514
 
515
        /**
516
         * Obtém o valor da propriedade nSeqEvento.
517
         *
518
         * @return
519
         *     possible object is
520
         *     {@link String }
521
         *    
522
         */
523
        public String getNSeqEvento() {
524
            return nSeqEvento;
525
        }
526
 
527
        /**
528
         * Define o valor da propriedade nSeqEvento.
529
         *
530
         * @param value
531
         *     allowed object is
532
         *     {@link String }
533
         *    
534
         */
535
        public void setNSeqEvento(String value) {
536
            this.nSeqEvento = value;
537
        }
538
 
539
        /**
540
         * Obtém o valor da propriedade verEvento.
541
         *
542
         * @return
543
         *     possible object is
544
         *     {@link String }
545
         *    
546
         */
547
        public String getVerEvento() {
548
            return verEvento;
549
        }
550
 
551
        /**
552
         * Define o valor da propriedade verEvento.
553
         *
554
         * @param value
555
         *     allowed object is
556
         *     {@link String }
557
         *    
558
         */
559
        public void setVerEvento(String value) {
560
            this.verEvento = value;
561
        }
562
 
563
        /**
564
         * Obtém o valor da propriedade detEvento.
565
         *
566
         * @return
567
         *     possible object is
568
         *     {@link TEvento.InfEvento.DetEvento }
569
         *    
570
         */
571
        public TEvento.InfEvento.DetEvento getDetEvento() {
572
            return detEvento;
573
        }
574
 
575
        /**
576
         * Define o valor da propriedade detEvento.
577
         *
578
         * @param value
579
         *     allowed object is
580
         *     {@link TEvento.InfEvento.DetEvento }
581
         *    
582
         */
583
        public void setDetEvento(TEvento.InfEvento.DetEvento value) {
584
            this.detEvento = value;
585
        }
586
 
587
        /**
588
         * Obtém o valor da propriedade id.
589
         *
590
         * @return
591
         *     possible object is
592
         *     {@link String }
593
         *    
594
         */
595
        public String getId() {
596
            return id;
597
        }
598
 
599
        /**
600
         * Define o valor da propriedade id.
601
         *
602
         * @param value
603
         *     allowed object is
604
         *     {@link String }
605
         *    
606
         */
607
        public void setId(String value) {
608
            this.id = value;
609
        }
610
 
611
 
612
        /**
613
         * <p>Classe Java de anonymous complex type.
614
         *
615
         * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
616
         *
617
         * <pre>
618
         * &lt;complexType&gt;
619
         *   &lt;complexContent&gt;
620
         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
621
         *       &lt;sequence&gt;
622
         *         &lt;element name="descEvento"&gt;
623
         *           &lt;simpleType&gt;
624
         *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
625
         *               &lt;whiteSpace value="preserve"/&gt;
626
         *               &lt;enumeration value="Cancelamento por substituicao"/&gt;
627
         *             &lt;/restriction&gt;
628
         *           &lt;/simpleType&gt;
629
         *         &lt;/element&gt;
630
         *         &lt;element name="cOrgaoAutor" type="{http://www.portalfiscal.inf.br/nfe}TCodUfIBGE"/&gt;
631
         *         &lt;element name="tpAutor"&gt;
632
         *           &lt;simpleType&gt;
633
         *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
634
         *               &lt;enumeration value="1"/&gt;
635
         *             &lt;/restriction&gt;
636
         *           &lt;/simpleType&gt;
637
         *         &lt;/element&gt;
638
         *         &lt;element name="verAplic" type="{http://www.portalfiscal.inf.br/nfe}TVerAplic"/&gt;
639
         *         &lt;element name="nProt" type="{http://www.portalfiscal.inf.br/nfe}TProt"/&gt;
640
         *         &lt;element name="xJust" type="{http://www.portalfiscal.inf.br/nfe}TJust"/&gt;
641
         *         &lt;element name="chNFeRef" type="{http://www.portalfiscal.inf.br/nfe}TChNFe"/&gt;
642
         *       &lt;/sequence&gt;
643
         *       &lt;attribute name="versao" use="required"&gt;
644
         *         &lt;simpleType&gt;
645
         *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
646
         *             &lt;whiteSpace value="preserve"/&gt;
647
         *             &lt;enumeration value="1.00"/&gt;
648
         *           &lt;/restriction&gt;
649
         *         &lt;/simpleType&gt;
650
         *       &lt;/attribute&gt;
651
         *     &lt;/restriction&gt;
652
         *   &lt;/complexContent&gt;
653
         * &lt;/complexType&gt;
654
         * </pre>
655
         *
656
         *
657
         */
658
        @XmlAccessorType(XmlAccessType.FIELD)
659
        @XmlType(name = "", propOrder = {
660
            "descEvento",
661
            "cOrgaoAutor",
662
            "tpAutor",
663
            "verAplic",
664
            "nProt",
665
            "xJust",
666
            "chNFeRef"
667
        })
668
        public static class DetEvento {
669
 
670
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
671
            protected String descEvento;
672
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
673
            protected String cOrgaoAutor;
674
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
675
            protected String tpAutor;
676
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
677
            protected String verAplic;
678
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
679
            protected String nProt;
680
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
681
            protected String xJust;
682
            @XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
683
            protected String chNFeRef;
684
            @XmlAttribute(name = "versao", required = true)
685
            protected String versao;
686
 
687
            /**
688
             * Obtém o valor da propriedade descEvento.
689
             *
690
             * @return
691
             *     possible object is
692
             *     {@link String }
693
             *    
694
             */
695
            public String getDescEvento() {
696
                return descEvento;
697
            }
698
 
699
            /**
700
             * Define o valor da propriedade descEvento.
701
             *
702
             * @param value
703
             *     allowed object is
704
             *     {@link String }
705
             *    
706
             */
707
            public void setDescEvento(String value) {
708
                this.descEvento = value;
709
            }
710
 
711
            /**
712
             * Obtém o valor da propriedade cOrgaoAutor.
713
             *
714
             * @return
715
             *     possible object is
716
             *     {@link String }
717
             *    
718
             */
719
            public String getCOrgaoAutor() {
720
                return cOrgaoAutor;
721
            }
722
 
723
            /**
724
             * Define o valor da propriedade cOrgaoAutor.
725
             *
726
             * @param value
727
             *     allowed object is
728
             *     {@link String }
729
             *    
730
             */
731
            public void setCOrgaoAutor(String value) {
732
                this.cOrgaoAutor = value;
733
            }
734
 
735
            /**
736
             * Obtém o valor da propriedade tpAutor.
737
             *
738
             * @return
739
             *     possible object is
740
             *     {@link String }
741
             *    
742
             */
743
            public String getTpAutor() {
744
                return tpAutor;
745
            }
746
 
747
            /**
748
             * Define o valor da propriedade tpAutor.
749
             *
750
             * @param value
751
             *     allowed object is
752
             *     {@link String }
753
             *    
754
             */
755
            public void setTpAutor(String value) {
756
                this.tpAutor = value;
757
            }
758
 
759
            /**
760
             * Obtém o valor da propriedade verAplic.
761
             *
762
             * @return
763
             *     possible object is
764
             *     {@link String }
765
             *    
766
             */
767
            public String getVerAplic() {
768
                return verAplic;
769
            }
770
 
771
            /**
772
             * Define o valor da propriedade verAplic.
773
             *
774
             * @param value
775
             *     allowed object is
776
             *     {@link String }
777
             *    
778
             */
779
            public void setVerAplic(String value) {
780
                this.verAplic = value;
781
            }
782
 
783
            /**
784
             * Obtém o valor da propriedade nProt.
785
             *
786
             * @return
787
             *     possible object is
788
             *     {@link String }
789
             *    
790
             */
791
            public String getNProt() {
792
                return nProt;
793
            }
794
 
795
            /**
796
             * Define o valor da propriedade nProt.
797
             *
798
             * @param value
799
             *     allowed object is
800
             *     {@link String }
801
             *    
802
             */
803
            public void setNProt(String value) {
804
                this.nProt = value;
805
            }
806
 
807
            /**
808
             * Obtém o valor da propriedade xJust.
809
             *
810
             * @return
811
             *     possible object is
812
             *     {@link String }
813
             *    
814
             */
815
            public String getXJust() {
816
                return xJust;
817
            }
818
 
819
            /**
820
             * Define o valor da propriedade xJust.
821
             *
822
             * @param value
823
             *     allowed object is
824
             *     {@link String }
825
             *    
826
             */
827
            public void setXJust(String value) {
828
                this.xJust = value;
829
            }
830
 
831
            /**
832
             * Obtém o valor da propriedade chNFeRef.
833
             *
834
             * @return
835
             *     possible object is
836
             *     {@link String }
837
             *    
838
             */
839
            public String getChNFeRef() {
840
                return chNFeRef;
841
            }
842
 
843
            /**
844
             * Define o valor da propriedade chNFeRef.
845
             *
846
             * @param value
847
             *     allowed object is
848
             *     {@link String }
849
             *    
850
             */
851
            public void setChNFeRef(String value) {
852
                this.chNFeRef = value;
853
            }
854
 
855
            /**
856
             * Obtém o valor da propriedade versao.
857
             *
858
             * @return
859
             *     possible object is
860
             *     {@link String }
861
             *    
862
             */
863
            public String getVersao() {
864
                return versao;
865
            }
866
 
867
            /**
868
             * Define o valor da propriedade versao.
869
             *
870
             * @param value
871
             *     allowed object is
872
             *     {@link String }
873
             *    
874
             */
875
            public void setVersao(String value) {
876
                this.versao = value;
877
            }
878
 
879
        }
880
 
881
    }
882
 
883
}