add field code #11

Merged
anbuiselly merged 1 commits from get-location-warehouse into develop 2022-08-29 10:55:49 +00:00
1 changed files with 3 additions and 0 deletions

View File

@ -10,16 +10,19 @@ type ResponseLocationAddress struct {
type LocationProvince struct {
ID string `json:"id"`
Name string `json:"name"`
Code string `json:"code"`
}
// LocationDistrict ...
type LocationDistrict struct {
ID string `json:"id"`
Name string `json:"name"`
Code string `json:"code"`
}
// LocationWard ...
type LocationWard struct {
ID string `json:"id"`
Name string `json:"name"`
Code string `json:"code"`
}