RetweetedTweet is a special case of Tweet for retweets to avoid XML naming conflicts
| 38 | |
| 39 | // RetweetedTweet is a special case of Tweet for retweets to avoid XML naming conflicts |
| 40 | type RetweetedTweet struct { |
| 41 | Tweet |
| 42 | XMLName xml.Name `xml:"retweeted_status" json:"-"` // Ahhhh, XML f u n. |
| 43 | } |
| 44 | |
| 45 | // https://web.archive.org/web/20120708212016/https://dev.twitter.com/docs/platform-objects/tweets |
| 46 | type Tweet struct { |
nothing calls this directly
no outgoing calls
no test coverage detected