type PublicMetrics struct {
FollowersCount int `json:"followers_count"`
FollowingCount int `json:"following_count"`
TweetCount int `json:"tweet_count"`
LikeCount int `json:"like_count"`
}
PublicMetrics are public metrics for a Twitter user
type User struct {
ID string `json:"id"`
Username string `json:"username"`
Name string `json:"name"`
ProfileImageUrl string `json:"profile_image_url"`
PublicMetrics PublicMetrics `json:"public_metrics"`
}
User represents the structure for a user in the Twitter API response