/// <summary>
 /// Gets a list of favorites based on the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public TwitterTimelineResponse GetFavorites(TwitterGetFavoritesOptions options) {
     return TwitterTimelineResponse.ParseResponse(Raw.GetFavorites(options));
 }
 /// <summary>
 /// Gets a list of favorites based on the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <see>
 ///     <cref>https://dev.twitter.com/rest/reference/get/favorites/list</cref>
 /// </see>
 public SocialHttpResponse GetFavorites(TwitterGetFavoritesOptions options) {
     return Client.DoHttpGetRequest("https://api.twitter.com/1.1/favorites/list.json", options);
 }