Ejemplo n.º 1
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)));
 }
Ejemplo n.º 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="count">The maximum amount of tweets to return.</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(int count)
 {
     return(TwitterGetRetweetsOfMeTimelineResponse.ParseResponse(Raw.GetRetweetsOfMe(count)));
 }