2021-01-12 23:53:23 -05:00
|
|
|
|
namespace BirdsiteLive.Twitter.Models
|
|
|
|
|
{
|
|
|
|
|
public class ApiStatistics
|
|
|
|
|
{
|
2021-01-13 20:04:21 -05:00
|
|
|
|
public int UserCallsCountMin { get; set; }
|
|
|
|
|
public int UserCallsCountAvg { get; set; }
|
|
|
|
|
public int UserCallsCountMax { get; set; }
|
2021-01-12 23:53:23 -05:00
|
|
|
|
public int UserCallsMax { get; set; }
|
2021-01-13 20:04:21 -05:00
|
|
|
|
public int TweetCallsCountMin { get; set; }
|
|
|
|
|
public int TweetCallsCountAvg { get; set; }
|
|
|
|
|
public int TweetCallsCountMax { get; set; }
|
2021-01-12 23:53:23 -05:00
|
|
|
|
public int TweetCallsMax { get; set; }
|
2021-01-13 20:04:21 -05:00
|
|
|
|
public int TimelineCallsCountMin { get; set; }
|
|
|
|
|
public int TimelineCallsCountAvg { get; set; }
|
|
|
|
|
public int TimelineCallsCountMax { get; set; }
|
2021-01-12 23:53:23 -05:00
|
|
|
|
public int TimelineCallsMax { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|