| 515 | } |
| 516 | |
| 517 | type SummarisedUser struct { |
| 518 | XMLName xml.Name `xml:"user" json:"-"` |
| 519 | ID int64 `json:"id" xml:"id"` |
| 520 | IDStr string `json:"id_str" xml:"id_str"` |
| 521 | Verified bool `json:"verified" xml:"verified"` |
| 522 | IsDMAble bool `json:"is_dm_able" xml:"is_dm_able"` |
| 523 | IsBlocked bool `json:"is_blocked" xml:"is_blocked"` |
| 524 | Name string `json:"name" xml:"name"` |
| 525 | ScreenName string `json:"screen_name" xml:"screen_name"` |
| 526 | ProfileImageURL string `json:"profile_image_url" xml:"profile_image_url"` |
| 527 | ProfileImageURLHttps string `json:"profile_image_url_https" xml:"profile_image_url_https"` |
| 528 | Location string `json:"location" xml:"location"` // unimplemented |
| 529 | IsProtected bool `json:"is_protected" xml:"is_protected"` |
| 530 | RoundedScore int `json:"rounded_score" xml:"rounded_score"` |
| 531 | ConnectedUserCount int `json:"connected_user_count" xml:"connected_user_count"` |
| 532 | ConnectedUserIds []int64 `json:"connected_user_ids" xml:"connected_user_ids"` |
| 533 | SocialProofsOrdered []string `json:"social_proofs_ordered" xml:"social_proofs_ordered"` // Unimplemented |
| 534 | SocialContext SocialContext `json:"social_context" xml:"social_context"` |
| 535 | Tokens []Token `json:"tokens" xml:"tokens"` |
| 536 | Inline bool `json:"inline" xml:"inline"` // unimplemented |
| 537 | } |
| 538 | |
| 539 | type Token struct { |
| 540 | Token string `json:"token" xml:"token"` |
nothing calls this directly
no outgoing calls
no test coverage detected