public TweetV2EventArgs(TweetV2 tweet, TweetIncludesV2 includes, string json)
 {
     Tweet    = tweet;
     Includes = includes;
     Json     = json;
 }
Beispiel #2
0
 public FilteredStreamTweetV2EventArgs(TweetV2 tweet, TweetIncludesV2 includes, FilteredStreamMatchingRuleV2[] matchingRules, string json) : base(tweet, includes, json)
 {
     MatchingRules = matchingRules;
 }