package tmdb type movieSearchResponse struct { Results []struct { Id int `json:"id"` } `json:"results"` } type tvSearchResponse struct { Results []struct { Id int `json:"id"` } `json:"results"` }