twitter-enumerator-0.0.3: Twitter API package with enumerator interface and Streaming API support.

Safe HaskellSafe-Infered

Web.Twitter.Enumerator.Types

Synopsis

Documentation

data Delete Source

Constructors

Delete 

data Entity a Source

Constructors

Entity 

Fields

entityBody :: a

The detail information of the specific entity types (HashTag, URL, User)

entityIndices :: EntityIndices

The character positions the Entity was extracted from

Instances

Eq a => Eq (Entity a) 
Show a => Show (Entity a) 
FromJSON a => FromJSON (Entity a) 

data UserEntity Source

The UserEntity is just a wrapper around User which is a bit wasteful, and should probably be replaced by just storing the id, name and screen name here.

Constructors

UserEntity User 

data URLEntity Source

Constructors

URLEntity 

Fields

ueURL :: URLString

The URL that was extracted

ueExpanded :: URLString

The fully resolved URL (only for t.co links)

ueDisplay :: Text

Not a URL but a string to display instead of the URL (only for t.co links)