/// <summary>
        /// Gets a list of playlist items based on the specified <code>options</code>.
        /// </summary>
        /// <param name="options">The options for the call to the API.</param>
        public SocialHttpResponse GetPlaylistItems(YouTubePlaylistItemListOptions options) {
            if (options == null) throw new ArgumentNullException("options");
            return Client.DoAuthenticatedGetRequest("https://www.googleapis.com/youtube/v3/playlistItems", options);

        }
 /// <summary>
 /// Gets a list of playlist items based on the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public YouTubePlaylistItemListResponse GetPlaylistItems(YouTubePlaylistItemListOptions options) {
     return YouTubePlaylistItemListResponse.ParseResponse(Raw.GetPlaylistItems(options));
 }