mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-23 11:40:05 -05:00
signon: Add missing GENUSERKEY field
This commit is contained in:
parent
2caa23564a
commit
d88d45a664
23
signon.go
23
signon.go
@ -9,17 +9,18 @@ import (
|
|||||||
// SignonRequest identifies and authenticates a user to their FI and is
|
// SignonRequest identifies and authenticates a user to their FI and is
|
||||||
// provided with every Request
|
// provided with every Request
|
||||||
type SignonRequest struct {
|
type SignonRequest struct {
|
||||||
XMLName xml.Name `xml:"SONRQ"`
|
XMLName xml.Name `xml:"SONRQ"`
|
||||||
DtClient Date `xml:"DTCLIENT"` // Current time on client, overwritten in Client.Request()
|
DtClient Date `xml:"DTCLIENT"` // Current time on client, overwritten in Client.Request()
|
||||||
UserID String `xml:"USERID"`
|
UserID String `xml:"USERID"`
|
||||||
UserPass String `xml:"USERPASS,omitempty"`
|
UserPass String `xml:"USERPASS,omitempty"`
|
||||||
UserKey String `xml:"USERKEY,omitempty"`
|
UserKey String `xml:"USERKEY,omitempty"`
|
||||||
Language String `xml:"LANGUAGE"` // Defaults to ENG
|
GenUserKey Boolean `xml:"GENUSERKEY,omitempty"`
|
||||||
Org String `xml:"FI>ORG"`
|
Language String `xml:"LANGUAGE"` // Defaults to ENG
|
||||||
Fid String `xml:"FI>FID"`
|
Org String `xml:"FI>ORG"`
|
||||||
AppID String `xml:"APPID"` // Overwritten in Client.Request()
|
Fid String `xml:"FI>FID"`
|
||||||
AppVer String `xml:"APPVER"` // Overwritten in Client.Request()
|
AppID String `xml:"APPID"` // Overwritten in Client.Request()
|
||||||
ClientUID UID `xml:"CLIENTUID,omitempty"`
|
AppVer String `xml:"APPVER"` // Overwritten in Client.Request()
|
||||||
|
ClientUID UID `xml:"CLIENTUID,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Name returns the name of the top-level transaction XML/SGML element
|
// Name returns the name of the top-level transaction XML/SGML element
|
||||||
|
Loading…
Reference in New Issue
Block a user