using System.Threading.Tasks; namespace SpotifyAPI.Web { /// /// Search Endpoints /// public interface ISearchClient { /// /// Get Spotify Catalog information about albums, artists, playlists, /// tracks, shows or episodes that match a keyword string. /// /// The request-model which contains required and optional parameters. /// /// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-search /// /// Task Item(SearchRequest request); } }