-
Notifications
You must be signed in to change notification settings - Fork 0
/
OFX_Loan_Message_Wrappers.go
77 lines (66 loc) · 3.26 KB
/
OFX_Loan_Message_Wrappers.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Code generated by xgen. DO NOT EDIT.
package gofx
// LoanStatementTransactionRequest is The OFX element "LOANSTMTTRNRQ" is of type "LoanStatementTransactionRequest"
type LoanStatementTransactionRequest struct {
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
LOANSTMTRQ *LoanStatementRequest `xml:"LOANSTMTRQ"`
*AbstractTransactionRequest
}
// LoanStatementTransactionResponse is The OFX element "LOANSTMTTRNRS" is of type "LoanStatementTransactionResponse"
type LoanStatementTransactionResponse struct {
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
LOANSTMTRS *LoanStatementResponse `xml:"LOANSTMTRS"`
*AbstractTransactionResponse
}
// AmortizationTransactionRequest is The OFX element "AMRTSTMTTRNRQ" is of type "AmortizationTransactionRequest"
type AmortizationTransactionRequest struct {
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
AMRTSTMTRQ *AmortizationRequest `xml:"AMRTSTMTRQ"`
*AbstractTransactionRequest
}
// AmortizationTransactionResponse is The OFX element "AMRTSTMTTRNRS" is of type "AmortizationTransactionResponse"
type AmortizationTransactionResponse struct {
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
AMRTSTMTRS *AmortizationResponse `xml:"AMRTSTMTRS"`
*AbstractTransactionResponse
}
// LoanStatementEndTransactionRequest is The OFX element "LOANSTMTENDTRNRQ" is of type "LoanStatementEndTransactionRequest"
type LoanStatementEndTransactionRequest struct {
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
LOANSTMTENDRQ *LoanStatementEndRequest `xml:"LOANSTMTENDRQ"`
*AbstractTransactionRequest
}
// LoanStatementEndTransactionResponse is The OFX element "LOANSTMTENDTRNRS" is of type "LoanStatementEndTransactionResponse"
type LoanStatementEndTransactionResponse struct {
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
LOANSTMTENDRS *LoanStatementEndResponse `xml:"LOANSTMTENDRS"`
*AbstractTransactionResponse
}
// LoanMailTransactionRequest is The OFX element "LOANMAILTRNRQ" is of type "LoanMailTransactionRequest"
type LoanMailTransactionRequest struct {
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
LOANMAILRQ *LoanMailRequest `xml:"LOANMAILRQ"`
*AbstractTransactionRequest
}
// LoanMailTransactionResponse is The OFX element "LOANMAILTRNRS" is of type "LoanMailTransactionResponse"
type LoanMailTransactionResponse struct {
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
LOANMAILRS *LoanMailResponse `xml:"LOANMAILRS"`
*AbstractTransactionResponse
}
// LoanMailSyncRequest is The OFX element "LOANMAILSYNCRQ" is of type "LoanMailSyncRequest"
type LoanMailSyncRequest struct {
INCIMAGES string `xml:"INCIMAGES"`
USEHTML string `xml:"USEHTML"`
LOANACCTFROM *LoanAccount `xml:"LOANACCTFROM"`
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
LOANMAILTRNRQ []*LoanMailTransactionRequest `xml:"LOANMAILTRNRQ"`
*AbstractSyncRequest
}
// LoanMailSyncResponse is The OFX element "LOANMAILSYNCRS" is of type "LoanMailSyncResponse"
type LoanMailSyncResponse struct {
LOANACCTFROM *LoanAccount `xml:"LOANACCTFROM"`
OFXEXTENSION *OFXExtensionType `xml:"OFXEXTENSION"`
LOANMAILTRNRS []*LoanMailTransactionResponse `xml:"LOANMAILTRNRS"`
*AbstractSyncResponse
}