2022-08-26 10:15:49 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
type ResponseLocationAddress struct {
|
|
|
|
Province LocationProvince `json:"province"`
|
|
|
|
District LocationDistrict `json:"district"`
|
|
|
|
Ward LocationWard `json:"ward"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// LocationProvince ...
|
|
|
|
type LocationProvince struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
2022-08-29 11:07:58 +00:00
|
|
|
Code int `json:"code"`
|
2022-08-26 10:15:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LocationDistrict ...
|
|
|
|
type LocationDistrict struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
2022-08-29 11:07:58 +00:00
|
|
|
Code int `json:"code"`
|
2022-08-26 10:15:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LocationWard ...
|
|
|
|
type LocationWard struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
2022-08-29 11:07:58 +00:00
|
|
|
Code int `json:"code"`
|
2022-08-26 10:15:49 +00:00
|
|
|
}
|