| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import options
- import common
- type
- RawUser* = object
- idStr*: string
- name*: string
- screenName*: string
- location*: string
- description*: string
- entities*: Entities
- createdAt*: string
- followersCount*: int
- friendsCount*: int
- favouritesCount*: int
- statusesCount*: int
- mediaCount*: int
- verified*: bool
- extIsBlueVerified*: bool
- protected*: bool
- profileLinkColor*: string
- profileBannerUrl*: string
- profileImageUrlHttps*: string
- profileImageExtensions*: Option[ImageExtensions]
- pinnedTweetIdsStr*: seq[string]
- Entities* = object
- url*: Urls
- description*: Urls
- Urls* = object
- urls*: seq[Url]
- ImageExtensions = object
- mediaColor*: tuple[r: Ok]
- Ok = object
- ok*: Palette
- Palette = object
- palette*: seq[tuple[rgb: Color]]
- Color* = object
- red*, green*, blue*: int
|