Class: Twitter::Suggestion

Inherits:
Base
  • Object
show all
Includes:
Memoizable
Defined in:
lib/twitter/suggestion.rb

Overview

Represents a Twitter user suggestion category

Instance Attribute Summary collapse

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#[], attr_reader, define_attribute_method, define_predicate_method, define_uri_method, display_uri_attr_reader, #initialize, object_attr_reader, predicate_attr_reader, uri_attr_reader

Methods included from Utils

flat_pmap, pmap

Constructor Details

This class inherits a constructor from Twitter::Base

Instance Attribute Details

#nameString (readonly)

The slug of the suggestion category

Examples:

suggestion.slug

Returns:

  • (String)


32
33
34
# File 'lib/twitter/suggestion.rb', line 32

def name
  @name
end

#sizeInteger (readonly)

The number of users in this category

Examples:

suggestion.size

Returns:

  • (Integer)


17
18
19
# File 'lib/twitter/suggestion.rb', line 17

def size
  @size
end

#slugString (readonly)

The slug of the suggestion category

Examples:

suggestion.slug

Returns:

  • (String)


32
33
34
# File 'lib/twitter/suggestion.rb', line 32

def slug
  @slug
end

Instance Method Details

#usersArray<Twitter::User>

Returns the users in this suggestion category

Examples:

suggestion.users

Returns:



40
41
42
43
44
# File 'lib/twitter/suggestion.rb', line 40

def users
  @attrs.fetch(:users, []).collect do |user|
    User.new(user)
  end
end