type Location struct {
PlaceName string `json:"placeName"`
Locality string `json:"localityName"`
Country string `json:"country"`
Lat float64 `json:"latitude"`
Long float64 `json:"longitude"`
}
type Moment struct {
ID string `json:"identifier"`
Type string `json:"type"`
MD5 string `json:"md5"`
Width int `json:"width"`
Height int `json:"height"`
Video bool `json:"-"`
}