class AST::ListMembers
Attributes
handle[R]
list_name[R]
Public Class Methods
new(handle, list_name)
click to toggle source
# File bin/twitter-algebra, line 225 def initialize(handle, list_name) @handle = handle @list_name = list_name end
Public Instance Methods
fetch_data()
click to toggle source
# File bin/twitter-algebra, line 234 def fetch_data $client.list_members(handle, list_name).map(&:id) end
key()
click to toggle source
# File bin/twitter-algebra, line 230 def key "#{handle}/#{list_name}" end