2019-12-31 07:16:11 +01:00
|
|
|
package places
|
|
|
|
|
2021-11-09 11:42:10 +01:00
|
|
|
// Place represents a region identified by city, state, and country.
|
2019-12-31 07:16:11 +01:00
|
|
|
type Place struct {
|
2020-04-28 19:41:06 +02:00
|
|
|
PlaceID string `json:"id"`
|
|
|
|
LocLabel string `json:"label"`
|
2021-11-12 05:09:17 +01:00
|
|
|
LocDistrict string `json:"district"`
|
2021-11-18 00:46:34 +01:00
|
|
|
LocCity string `json:"city"`
|
2020-04-28 19:41:06 +02:00
|
|
|
LocState string `json:"state"`
|
|
|
|
LocCountry string `json:"country"`
|
|
|
|
LocKeywords string `json:"keywords"`
|
2019-12-31 07:16:11 +01:00
|
|
|
}
|