Class: Twitter::Action::ListMemberAdded

Inherits:
Base
  • Object
show all
Includes:
Creatable
Defined in:
lib/twitter/action/list_member_added.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods included from Creatable

#created_at

Methods inherited from Base

#[], attr_reader, fetch, fetch_or_new, from_response, identity_map, #initialize, store, #update

Constructor Details

This class inherits a constructor from Twitter::Base

Instance Attribute Details

#max_positionObject (readonly)

Returns the value of attribute max_position.



10
11
12
# File 'lib/twitter/action/list_member_added.rb', line 10

def max_position
  @max_position
end

#min_positionObject (readonly)

Returns the value of attribute min_position.



10
11
12
# File 'lib/twitter/action/list_member_added.rb', line 10

def min_position
  @min_position
end

Instance Method Details

#sourcesArray<Twitter::User>

A collection of users who added a user to a list

Returns:



15
16
17
18
19
# File 'lib/twitter/action/list_member_added.rb', line 15

def sources
  @sources = Array(@attrs[:sources]).map do |user|
    Twitter::User.fetch_or_new(user)
  end
end

#target_objectsArray<Twitter::List>

A collection of lists that were added to

Returns:



24
25
26
27
28
# File 'lib/twitter/action/list_member_added.rb', line 24

def target_objects
  @target_objects = Array(@attrs[:target_objects]).map do |list|
    Twitter::List.fetch_or_new(list)
  end
end

#targetsArray<Twitter::User>

A collection of users who were added to a list

Returns:



33
34
35
36
37
# File 'lib/twitter/action/list_member_added.rb', line 33

def targets
  @targets = Array(@attrs[:targets]).map do |user|
    Twitter::User.fetch_or_new(user)
  end
end