-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
tweet.go
134 lines (118 loc) · 4.44 KB
/
tweet.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package resources
import "time"
type Tweet struct {
ID *string `json:"id"`
Text *string `json:"text"`
EditHistoryTweetIDs []*string `json:"edit_history_tweet_ids"`
Attachments *TweetAttachments `json:"attachments,omitempty"`
AuthorID *string `json:"author_id,omitempty"`
ContextAnnotations []ContextAnnotation `json:"context_annotations,omitempty"`
ConversationID *string `json:"conversation_id,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"`
Entities *TweetEntities `json:"entities,omitempty"`
Geo *Geo `json:"geo,omitempty"`
InReplyToUserID *string `json:"in_reply_to_user_id,omitempty"`
Lang *string `json:"lang,omitempty"`
NonPublicMetrics *NonPublicMetrics `json:"non_public_metrics,omitempty"`
OrganicMetrics *OrganicMetrics `json:"organic_metrics,omitempty"`
PossiblySensitive *bool `json:"possibly_sensitive,omitempty"`
PromotedMetrics *PromotedMetrics `json:"promoted_metrics,omitempty"`
PublicMetrics *TweetPublicMetrics `json:"public_metrics,omitempty"`
ReferencedTweets []ReferencedTweet `json:"referenced_tweets,omitempty"`
ReplySettings *string `json:"reply_settings,omitempty"`
Source *string `json:"source,omitempty"`
Withheld *TweetWithheld `json:"withheld,omitempty"`
}
type TweetAttachments struct {
MediaKeys []string `json:"media_keys,omitempty"`
PollIDs []string `json:"poll_i_ds,omitempty"`
}
type ContextAnnotation struct {
Domain struct {
ID *string `json:"id"`
Name *string `json:"name"`
Description *string `json:"description"`
} `json:"domain"`
Entity struct {
ID *string `json:"id"`
Name *string `json:"name"`
}
}
type TweetEntities struct {
Annotations []Annotation `json:"annotations"`
CashTags []TweetEntityTag `json:"cashtags"`
HashTags []TweetEntityTag `json:"hashtags"`
Mentions []TweetEntityTag `json:"mentions"`
URLs []URL `json:"urls"`
}
type Annotation struct {
Start *int `json:"start"`
End *int `json:"end"`
Probability *float64 `json:"probability"`
Type *string `json:"type"`
NormalizedText *string `json:"normalized_text"`
}
type TweetEntityTag struct {
Start *int `json:"start"`
End *int `json:"end"`
Tag *string `json:"tag"`
}
type URL struct {
Start *int `json:"start"`
End *int `json:"end"`
URL *string `json:"url"`
ExpandedURL *string `json:"expanded_url"`
DisplayURL *string `json:"display_url"`
Images []URLImage `json:"images"`
Status *int `json:"status"`
Title *string `json:"title"`
Description *string `json:"description"`
UnwoundURL *string `json:"unwound_url"`
}
type URLImage struct {
URL *string `json:"url"`
Width *int `json:"width"`
Height *int `json:"height"`
}
type Geo struct {
Coordinates struct {
Type *string `json:"type"`
Coordinates []*int `json:"coordinates"`
} `json:"coordinates"`
PlaceID *string `json:"place_id"`
}
type NonPublicMetrics struct {
ImpressionCount *int `json:"impression_count"`
UrlLinkClicks *int `json:"url_link_clicks"`
UserProfileClicks *int `json:"user_profile_clicks"`
}
type OrganicMetrics struct {
ImpressionCount *int `json:"impression_count"`
LikeCount *int `json:"like_count"`
ReplyCount *int `json:"reply_count"`
RetweetCount *int `json:"retweet_count"`
UrlLinkClicks *int `json:"url_link_clicks"`
UserProfileClicks *int `json:"user_profile_clicks"`
}
type PromotedMetrics struct {
ImpressionCount *int `json:"impression_count"`
LikeCount *int `json:"like_count"`
ReplyCount *int `json:"reply_count"`
RetweetCount *int `json:"retweet_count"`
UrlLinkClicks *int `json:"url_link_clicks"`
UserProfileClicks *int `json:"user_profile_clicks"`
}
type TweetPublicMetrics struct {
RetweetCount *int `json:"retweet_count"`
ReplyCount *int `json:"reply_count"`
LikeCount *int `json:"like_count"`
QuoteCount *int `json:"quote_count"`
}
type ReferencedTweet struct {
Type *string `json:"type"`
ID *string `json:"id"`
}
type TweetWithheld struct {
Copyright *bool `json:"copyright"`
CountryCodes []*string `json:"country_codes"`
}