/// <summary>
 /// Gets a list of playlists based on the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public YouTubePlaylistListResponse GetPlaylists(YouTubePlaylistListOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return YouTubePlaylistListResponse.ParseResponse(Raw.GetPlaylists(options));
 }
        /// <summary>
        /// Gets a list of playlists based on the specified <code>options</code>.
        /// </summary>
        /// <param name="options">The options for the call to the API.</param>
        public SocialHttpResponse GetPlaylists(YouTubePlaylistListOptions options) {
            if (options == null) throw new ArgumentNullException("options");
            return Client.DoAuthenticatedGetRequest("https://www.googleapis.com/youtube/v3/playlists", options);

        }