mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-22 03:30:04 -05:00
profile: Change 'VER' from a String to an Int
This commit is contained in:
parent
f794d452c4
commit
ea700b33a9
@ -54,7 +54,7 @@ type SignonInfo struct {
|
|||||||
type MessageSet struct {
|
type MessageSet struct {
|
||||||
XMLName xml.Name // <xxxMSGSETVn>
|
XMLName xml.Name // <xxxMSGSETVn>
|
||||||
Name string // <xxxMSGSETVn> (copy of XMLName.Local)
|
Name string // <xxxMSGSETVn> (copy of XMLName.Local)
|
||||||
Ver String `xml:"MSGSETCORE>VER"` // Message set version - should always match 'n' in <xxxMSGSETVn>
|
Ver Int `xml:"MSGSETCORE>VER"` // Message set version - should always match 'n' in <xxxMSGSETVn>
|
||||||
Url String `xml:"MSGSETCORE>URL"` // URL where messages in this set are to be set
|
Url String `xml:"MSGSETCORE>URL"` // URL where messages in this set are to be set
|
||||||
OfxSec String `xml:"MSGSETCORE>OFXSEC"` // NONE or 'TYPE 1'
|
OfxSec String `xml:"MSGSETCORE>OFXSEC"` // NONE or 'TYPE 1'
|
||||||
TranspSec Boolean `xml:"MSGSETCORE>TRANSPSEC"` // Transport-level security must be used
|
TranspSec Boolean `xml:"MSGSETCORE>TRANSPSEC"` // Transport-level security must be used
|
||||||
|
@ -231,7 +231,7 @@ NEWFILEUID:NONE
|
|||||||
MessageSetList: ofxgo.MessageSetList{
|
MessageSetList: ofxgo.MessageSetList{
|
||||||
ofxgo.MessageSet{
|
ofxgo.MessageSet{
|
||||||
Name: "SIGNONMSGSETV1",
|
Name: "SIGNONMSGSETV1",
|
||||||
Ver: "1",
|
Ver: 1,
|
||||||
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
||||||
OfxSec: "NONE",
|
OfxSec: "NONE",
|
||||||
TranspSec: true,
|
TranspSec: true,
|
||||||
@ -243,7 +243,7 @@ NEWFILEUID:NONE
|
|||||||
},
|
},
|
||||||
ofxgo.MessageSet{
|
ofxgo.MessageSet{
|
||||||
Name: "SIGNUPMSGSETV1",
|
Name: "SIGNUPMSGSETV1",
|
||||||
Ver: "1",
|
Ver: 1,
|
||||||
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
||||||
OfxSec: "NONE",
|
OfxSec: "NONE",
|
||||||
TranspSec: true,
|
TranspSec: true,
|
||||||
@ -255,7 +255,7 @@ NEWFILEUID:NONE
|
|||||||
},
|
},
|
||||||
ofxgo.MessageSet{
|
ofxgo.MessageSet{
|
||||||
Name: "INVSTMTMSGSETV1",
|
Name: "INVSTMTMSGSETV1",
|
||||||
Ver: "1",
|
Ver: 1,
|
||||||
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
||||||
OfxSec: "NONE",
|
OfxSec: "NONE",
|
||||||
TranspSec: true,
|
TranspSec: true,
|
||||||
@ -267,7 +267,7 @@ NEWFILEUID:NONE
|
|||||||
},
|
},
|
||||||
ofxgo.MessageSet{
|
ofxgo.MessageSet{
|
||||||
Name: "SECLISTMSGSETV1",
|
Name: "SECLISTMSGSETV1",
|
||||||
Ver: "1",
|
Ver: 1,
|
||||||
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
||||||
OfxSec: "NONE",
|
OfxSec: "NONE",
|
||||||
TranspSec: true,
|
TranspSec: true,
|
||||||
@ -279,7 +279,7 @@ NEWFILEUID:NONE
|
|||||||
},
|
},
|
||||||
ofxgo.MessageSet{
|
ofxgo.MessageSet{
|
||||||
Name: "PROFMSGSETV1",
|
Name: "PROFMSGSETV1",
|
||||||
Ver: "1",
|
Ver: 1,
|
||||||
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
Url: "https://ofx.example.com/cgi-ofx/exampleofx",
|
||||||
OfxSec: "NONE",
|
OfxSec: "NONE",
|
||||||
TranspSec: true,
|
TranspSec: true,
|
||||||
|
Loading…
Reference in New Issue
Block a user