-
Notifications
You must be signed in to change notification settings - Fork 11
/
tipos.go
41 lines (35 loc) · 1.05 KB
/
tipos.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package nfe
import (
"time"
)
// TAmb representa o ambiente (tpAmb) que será usado na comunicação.
type TAmb int
const (
Producao TAmb = 1
Homologacao TAmb = 2
)
// TWebService representa o serviço que será consultado. Usado pela função getURLWS para obter a URL da requisição.
type TWebService int
const (
ConsultaStatus TWebService = iota
ConsultaProtocolo
ConsultaCadastro
Autorizacao
RetAutorizacao
Evento
Inutilizacao
)
// ProtNFe representa o XML do protocolo de autorização da NFe, encontrado em RetConsSitNFe.
type ProtNFe struct {
Versao string `json:"-" xml:"versao,attr"`
InfProt struct {
TpAmb TAmb `json:"tpAmb" xml:"tpAmb"`
VerAplic string `json:"verAplic" xml:"verAplic"`
ChNFe string `json:"chNFe" xml:"chNFe"`
DhRecbto time.Time `json:"dhRecbto" xml:"dhRecbto"`
NProt string `json:"nProt" xml:"nProt"`
DigVal string `json:"digVal" xml:"digVal"`
CStat int `json:"cStat" xml:"cStat"`
XMotivo string `json:"xMotivo" xml:"xMotivo"`
} `json:"infProt" xml:"infProt"`
}