2019-12-19 17:17:13 +01:00
|
|
|
package osm
|
|
|
|
|
|
|
|
type Address struct {
|
|
|
|
HouseNumber string `json:"house_number"`
|
|
|
|
Road string `json:"road"`
|
|
|
|
Suburb string `json:"suburb"`
|
|
|
|
Town string `json:"town"`
|
2019-12-21 16:22:24 +01:00
|
|
|
Village string `json:"village"`
|
2019-12-19 17:17:13 +01:00
|
|
|
City string `json:"city"`
|
|
|
|
Postcode string `json:"postcode"`
|
|
|
|
County string `json:"county"`
|
|
|
|
State string `json:"state"`
|
|
|
|
Country string `json:"country"`
|
|
|
|
CountryCode string `json:"country_code"`
|
|
|
|
}
|