/// <summary>
 /// Gets a list of the most recent tweets authored by the authenticating user that have been retweeted by others.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 /// <returns>An instance of <see cref="SocialHttpResponse"/> representing the raw response.</returns>
 /// <see>
 ///     <cref>https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/get-statuses-retweets_of_me</cref>
 /// </see>
 public SocialHttpResponse GetRetweetsOfMe(TwitterGetRetweetsOfMeTimelineOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(Client.DoHttpGetRequest("https://api.twitter.com/1.1/statuses/retweets_of_me.json", options));
 }
Example #2
0
 /// <summary>
 /// Gets a list of the most recent tweets authored by the authenticating user that have been retweeted by others.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 /// <returns>An instance of <see cref="TwitterGetRetweetsOfMeTimelineResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/get-statuses-retweets_of_me</cref>
 /// </see>
 public TwitterGetRetweetsOfMeTimelineResponse GetRetweetsOfMe(TwitterGetRetweetsOfMeTimelineOptions options)
 {
     return(TwitterGetRetweetsOfMeTimelineResponse.ParseResponse(Raw.GetRetweetsOfMe(options)));
 }