Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type TweetApiResponse ¶
type TweetApiResponse struct {
ID string `json:"id_str"`
Text string `json:"full_text"`
Timestamp string `json:"created_at"`
Likes uint64 `json:"favorite_count"`
Retweets uint64 `json:"retweet_count"`
User struct {
Name string `json:"name"`
Username string `json:"screen_name"`
ProfileImageUrl string `json:"profile_image_url_https"`
} `json:"user"`
Entities struct {
Media []struct {
Url string `json:"media_url_https"`
} `json:"media"`
} `json:"entities"`
}
Click to show internal directories.
Click to hide internal directories.