type City struct {
Id string `json:"id"`
Name string `json:"name"`
State string `json:"state"`
StateCode string `json:"stateCode"`
Country Country `json:"country"`
}
type Setlist struct {
Id string `json:"id"`
VersionId string `json:"versionId"`
EventDate string `json:"eventDate"`
LastUpdated string `json:"lastUpdated"`
Artist Artist `json:"artist"`
Venue Venue `json:"venue"`
Tour Tour `json:"tour"`
Sets Sets `json:"sets"`
Info string `json:"info"`
Url string `json:"url"`
}
type SetlistPage struct {
Type string `json:"type"`
ItemsPerPage int `json:"itemsPerPage"`
Page int `json:"page"`
Total int `json:"total"`
Setlist []Setlist `json:"setlist"`
}