License | MIT (see the file LICENSE) |
---|---|
Maintainer | Justin Leitgeb <justin@stackbuilders.com> |
Safe Haskell | None |
Language | Haskell2010 |
Types for working with the twitter API.
- data Tweet = Tweet {}
- data SimpleTweet = SimpleTweet {}
- data Link = Link {}
- data Entities = Entities {
- userEntities :: [UserEntity]
- urlEntities :: [URLEntity]
- mediaEntities :: [MediaEntity]
- data URLEntity = URLEntity {
- urlMessage :: String
- urlIndices :: BoundingIndices
- displayUrl :: String
- data UserEntity = UserEntity {
- screenName :: String
- userIndices :: BoundingIndices
- data MediaEntity = MediaEntity {
- mediaUrl :: String
- mediaIndices :: BoundingIndices
- displayMediaUrl :: String
Documentation
Represent a tweet as plain text
Represent a link as HTML
Represent a list of all tweet references
Entities | |
|
Represent a url reference
URLEntity | |
|
data UserEntity Source
Represent a user reference
UserEntity | |
|
data MediaEntity Source
Represent a media reference
MediaEntity | |
|