Packages

package user

Type Members

  1. abstract class Event[T] extends UserStreamingMessage

    Notifications about non-Tweet events are also sent over a user stream.

    Notifications about non-Tweet events are also sent over a user stream. The values present will be different based on the type of event. For more information see https://developer.twitter.com/en/docs/tweets/filter-realtime/guides/streaming-message-types.

  2. final case class FriendsLists(friends: Seq[Long]) extends UserStreamingMessage with Product with Serializable

    Upon establishing a User Stream connection, Twitter will send a preamble before starting regular message delivery.

    Upon establishing a User Stream connection, Twitter will send a preamble before starting regular message delivery. This preamble contains a list of the user’s friends. This is represented as an array of user ids as longs. For more information see https://developer.twitter.com/en/docs/tweets/filter-realtime/guides/streaming-message-types

  3. final case class FriendsListsStringified(friends: Seq[String]) extends UserStreamingMessage with Product with Serializable

    Upon establishing a User Stream connection, Twitter will send a preamble before starting regular message delivery.

    Upon establishing a User Stream connection, Twitter will send a preamble before starting regular message delivery. This preamble contains a list of the user’s friends. This is represented as an array of user ids as strings. For more information see https://developer.twitter.com/en/docs/tweets/filter-realtime/guides/streaming-message-types

  4. final case class SimpleEvent(created_at: Instant, event: SimpleEventCode, target: User, source: User, target_object: Option[String]) extends Event[String] with Product with Serializable
  5. final case class TweetEvent(created_at: Instant, event: TweetEventCode, target: User, source: User, target_object: Tweet) extends Event[Tweet] with Product with Serializable
  6. final case class TwitterListEvent(created_at: Instant, event: TwitterListEventCode, target: User, source: User, target_object: TwitterList) extends Event[TwitterList] with Product with Serializable

Ungrouped