user.nim 544 B

12345678910111213141516171819202122232425262728
  1. import common
  2. type
  3. User* = object
  4. idStr*: string
  5. name*: string
  6. screenName*: string
  7. location*: string
  8. description*: string
  9. entities*: Entities
  10. createdAt*: string
  11. followersCount*: int
  12. friendsCount*: int
  13. favouritesCount*: int
  14. statusesCount*: int
  15. mediaCount*: int
  16. verified*: bool
  17. protected*: bool
  18. profileBannerUrl*: string
  19. profileImageUrlHttps*: string
  20. profileLinkColor*: string
  21. Entities* = object
  22. url*: Urls
  23. description*: Urls
  24. Urls* = object
  25. urls*: seq[Url]