Class: Twitter::Action::ListMemberAdded
- Inherits:
-
Base
- Object
- Base
- Twitter::Action::ListMemberAdded
- Includes:
- Creatable
- Defined in:
- lib/hackeroo/action/list_member_added.rb
Instance Attribute Summary collapse
-
#max_position ⇒ Object
readonly
Returns the value of attribute max_position.
-
#min_position ⇒ Object
readonly
Returns the value of attribute min_position.
Instance Method Summary collapse
-
#sources ⇒ Array<Twitter::User>
A collection of users who added a user to a list.
-
#target_objects ⇒ Array<Twitter::List>
A collection of lists that were added to.
-
#targets ⇒ Array<Twitter::User>
A collection of users who were added to a list.
Instance Attribute Details
#max_position ⇒ Object (readonly)
Returns the value of attribute max_position.
8 9 10 |
# File 'lib/hackeroo/action/list_member_added.rb', line 8 def max_position @max_position end |
#min_position ⇒ Object (readonly)
Returns the value of attribute min_position.
8 9 10 |
# File 'lib/hackeroo/action/list_member_added.rb', line 8 def min_position @min_position end |
Instance Method Details
#sources ⇒ Array<Twitter::User>
A collection of users who added a user to a list
13 14 15 16 17 |
# File 'lib/hackeroo/action/list_member_added.rb', line 13 def sources @sources = Array(@attrs[:sources]).map do |user| Twitter::User.fetch_or_new(user) end end |
#target_objects ⇒ Array<Twitter::List>
A collection of lists that were added to
22 23 24 25 26 |
# File 'lib/hackeroo/action/list_member_added.rb', line 22 def target_objects @target_objects = Array(@attrs[:target_objects]).map do |list| Twitter::List.fetch_or_new(list) end end |
#targets ⇒ Array<Twitter::User>
A collection of users who were added to a list
31 32 33 34 35 |
# File 'lib/hackeroo/action/list_member_added.rb', line 31 def targets @targets = Array(@attrs[:targets]).map do |user| Twitter::User.fetch_or_new(user) end end |