1
0
mirror of https://github.com/aclindsa/ofxgo.git synced 2025-07-01 11:48:38 -04:00

Rename Response/Request Profile -> Prof

This is more in line with the rest, which match their OFX message set
names except for capitalization.
This commit is contained in:
2017-04-03 19:50:16 -04:00
parent 7834d53f9b
commit 42864dace3
5 changed files with 12 additions and 12 deletions

View File

@ -30,7 +30,7 @@ const (
SecListRq
PresDirRq
PresDlvRq
ProfileRq
ProfRq
ImageRq
// Responses
SignonRs
@ -46,7 +46,7 @@ const (
SecListRs
PresDirRs
PresDlvRs
ProfileRs
ProfRs
ImageRs
)
@ -78,7 +78,7 @@ func (t messageType) String() string {
return "PRESDIRMSGSRQV1"
case PresDlvRq:
return "PRESDLVMSGSRQV1"
case ProfileRq:
case ProfRq:
return "PROFMSGSRQV1"
case ImageRq:
return "IMAGEMSGSRQV1"
@ -108,7 +108,7 @@ func (t messageType) String() string {
return "PRESDIRMSGSRSV1"
case PresDlvRs:
return "PRESDLVMSGSRSV1"
case ProfileRs:
case ProfRs:
return "PROFMSGSRSV1"
case ImageRs:
return "IMAGEMSGSRSV1"