Packages

trait TwitterSuggestionClient extends AnyRef

Implements the available requests for the suggestions resource.

Source
TwitterSuggestionClient.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TwitterSuggestionClient
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val restClient: RestClient
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. def suggestedCategories(language: Language = Language.English): Future[RatedData[Seq[Category]]]

    Access to Twitter’s suggested user list.

    Access to Twitter’s suggested user list. This returns the list of suggested user categories. It is recommended that applications cache this data for no more than one hour. For more information see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-users-suggestions.

    language

    : By default it is English. Restricts the suggested categories to the requested language.

    returns

    : The representation of the category suggestions.

  16. def suggestions(slug: String, language: Language = Language.English): Future[RatedData[Suggestions]]

    Access the users in a given category of the Twitter suggested user list.

    Access the users in a given category of the Twitter suggested user list. It is recommended that applications cache this data for no more than one hour. For more information see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-users-suggestions-slug.

    slug

    : The short name of list or a category.

    language

    : By default it is English. Restricts the suggested categories to the requested language.

    returns

    : The representation of the user suggestions.

  17. def suggestionsMembers(slug: String): Future[RatedData[Seq[User]]]

    Access the users in a given category of the Twitter suggested user list and return their most recent status if they are not a protected user.

    Access the users in a given category of the Twitter suggested user list and return their most recent status if they are not a protected user. For more information see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-users-suggestions-slug-members.

    slug

    : The short name of list or a category.

    returns

    : The representation of the suggested users.

  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped