diff --git a/model/location_response.go b/model/location_response.go index 1595908..f0b4116 100644 --- a/model/location_response.go +++ b/model/location_response.go @@ -15,6 +15,7 @@ type ( ID string `json:"id"` Name string `json:"name"` Code int `json:"code"` + Slug string `json:"slug"` RegionCode string `json:"regionCode"` MainRegionCode string `json:"mainRegionCode"` } @@ -24,6 +25,7 @@ type ( ID string `json:"id"` Name string `json:"name"` Code int `json:"code"` + Slug string `json:"slug"` } // LocationWard ... @@ -31,6 +33,7 @@ type ( ID string `json:"id"` Name string `json:"name"` Code int `json:"code"` + Slug string `json:"slug"` } // LocationProvinceResponse ... @@ -53,7 +56,6 @@ type ( ID string `json:"_id"` Name string `json:"name"` SearchString string `json:"searchString"` - Slug string `json:"slug"` OldSlug string `json:"oldSlug"` Code int `json:"code"` CountryCode string `json:"countryCode"` @@ -70,7 +72,6 @@ type ( ID string `json:"_id"` Name string `json:"name"` SearchString string `json:"searchString"` - Slug string `json:"slug"` OldSlug string `json:"oldSlug"` Code int `json:"code"` ProvinceCode int `json:"provinceCode"` @@ -85,7 +86,6 @@ type ( ID string `json:"_id"` Name string `json:"name"` SearchString string `json:"searchString"` - Slug string `json:"slug"` OldSlugs []string `json:"oldSlugs"` Code int `json:"code"` DistrictCode int `json:"districtCode"`