Skip to content

Commit

Permalink
go vet
Browse files Browse the repository at this point in the history
  • Loading branch information
bkmoovio committed Apr 23, 2019
1 parent f10d733 commit f649843
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion remittanceBeneficiary.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type RemittanceBeneficiary struct {
// RemittanceData
RemittanceData RemittanceData `json:"remittanceData,omitempty"`
// CountryOfResidence
CountryOfResidence string `json:"countryOfResidence, omitempty"`
CountryOfResidence string `json:"countryOfResidence,omitempty"`

// validator is composed for data validation
validator
Expand Down
2 changes: 1 addition & 1 deletion remittanceData.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type RemittanceData struct {
// Name
Name string `json:"name,omitempty"`
// DateBirthPlace
DateBirthPlace string `json:"dateBirthPlace,omitempty""`
DateBirthPlace string `json:"dateBirthPlace,omitempty"`
// AddressType
AddressType string `json:"addressType,omitempty"`
// Department
Expand Down
2 changes: 1 addition & 1 deletion remittanceOriginator.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type RemittanceOriginator struct {
// RemittanceData
RemittanceData RemittanceData `json:"remittanceData,omitempty"`
// CountryOfResidence
CountryOfResidence string `json:"countryOfResidence, omitempty"`
CountryOfResidence string `json:"countryOfResidence,omitempty"`
// ContactName
ContactName string `json:"contactName,omitempty"`
// ContactPhoneNumber
Expand Down

0 comments on commit f649843

Please sign in to comment.