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

@ -28,7 +28,7 @@ type Response struct {
SecList []Message //<SECLISTMSGSETV1>
PresDir []Message //<PRESDIRMSGSETV1>
PresDlv []Message //<PRESDLVMSGSETV1>
Profile []Message //<PROFMSGSETV1>
Prof []Message //<PROFMSGSETV1>
Image []Message //<IMAGEMSGSETV1>
}
@ -207,7 +207,7 @@ var responseTypes = map[string]map[string]reflect.Type{
(&SecurityList{}).Name(): reflect.TypeOf(SecurityList{})},
PresDirRs.String(): map[string]reflect.Type{},
PresDlvRs.String(): map[string]reflect.Type{},
ProfileRs.String(): map[string]reflect.Type{
ProfRs.String(): map[string]reflect.Type{
(&ProfileResponse{}).Name(): reflect.TypeOf(ProfileResponse{})},
ImageRs.String(): map[string]reflect.Type{},
}
@ -326,7 +326,7 @@ func ParseResponse(reader io.Reader) (*Response, error) {
SecListRs.String(): &or.SecList,
PresDirRs.String(): &or.PresDir,
PresDlvRs.String(): &or.PresDlv,
ProfileRs.String(): &or.Profile,
ProfRs.String(): &or.Prof,
ImageRs.String(): &or.Image,
}