class MilkCap::RTM::List
Attributes
list_id[R]
Public Class Methods
find(params={})
click to toggle source
# File lib/milk_cap/rtm/resources.rb, line 254 def self.find (params={}) execute('getList', params)[resource_name]['list'].collect do |h| self.new(h) end end
new(h)
click to toggle source
Calls superclass method
MilkCap::RTM::MilkResource::new
# File lib/milk_cap/rtm/resources.rb, line 248 def initialize (h) super @list_id = h['id'] end