-
Notifications
You must be signed in to change notification settings - Fork 0
/
OFX_Banking.go
62 lines (55 loc) · 2.22 KB
/
OFX_Banking.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Code generated by xgen. DO NOT EDIT.
package gofx
// CheckStatusEnum is The OFX element "CHECKSTATUSENUM" is of type "CheckStatusEnum"
type CheckStatusEnum string
// AbstractCheckInfo ...
type AbstractCheckInfo struct {
}
// CheckDescription is The OFX element "CHKDESC" is of type "CheckDescription"
type CheckDescription struct {
NAME string `xml:"NAME"`
CHECKNUM string `xml:"CHECKNUM"`
DTUSER string `xml:"DTUSER"`
TRNAMT string `xml:"TRNAMT"`
*AbstractCheckInfo
}
// CheckRange is The OFX element "CHKRANGE" is of type "CheckRange"
type CheckRange struct {
CHKNUMSTART string `xml:"CHKNUMSTART"`
CHKNUMEND string `xml:"CHKNUMEND"`
*AbstractCheckInfo
}
// Closing is The OFX element "CLOSING" is of type "Closing"
type Closing struct {
FITID string `xml:"FITID"`
DTOPEN string `xml:"DTOPEN"`
DTCLOSE string `xml:"DTCLOSE"`
DTNEXT string `xml:"DTNEXT"`
BALOPEN string `xml:"BALOPEN"`
BALCLOSE string `xml:"BALCLOSE"`
BALMIN string `xml:"BALMIN"`
DEPANDCREDIT string `xml:"DEPANDCREDIT"`
CHKANDDEB string `xml:"CHKANDDEB"`
TOTALFEES string `xml:"TOTALFEES"`
TOTALINT string `xml:"TOTALINT"`
INTRATE string `xml:"INTRATE"`
INTYTD string `xml:"INTYTD"`
DTPOSTSTART string `xml:"DTPOSTSTART"`
DTPOSTEND string `xml:"DTPOSTEND"`
CREDITLINEINFO *CreditLineInfoType `xml:"CREDITLINEINFO"`
MKTGINFO string `xml:"MKTGINFO"`
IMAGEDATA *ImageData `xml:"IMAGEDATA"`
CURRENCY *Currency `xml:"CURRENCY"`
ORIGCURRENCY *Currency `xml:"ORIGCURRENCY"`
}
// StopCheckNumber is The OFX element "STPCHKNUM" is of type "StopCheckNumber"
type StopCheckNumber struct {
CHECKNUM string `xml:"CHECKNUM"`
NAME string `xml:"NAME"`
DTUSER string `xml:"DTUSER"`
TRNAMT string `xml:"TRNAMT"`
CHKSTATUS string `xml:"CHKSTATUS"`
CHKERROR string `xml:"CHKERROR"`
CURRENCY *Currency `xml:"CURRENCY"`
ORIGCURRENCY *Currency `xml:"ORIGCURRENCY"`
}