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