class RTM::Lists::Delete

www.rememberthemilk.com/services/api/methods/rtm.lists.delete.rtm

Public Class Methods

new(token, id) click to toggle source
Calls superclass method RTM::API::new
# File lib/rtmilk/api/lists.rb, line 39
def initialize(token, id)
   super 'rtm.lists.delete', token, RTM::Timeline.new(token).to_s
   @param['list_id'] = id
end

Public Instance Methods

parse_result(result) click to toggle source

return [name, smart, filter?, id, archived, deleted, position, locked]*

Calls superclass method RTM::API#parse_result
# File lib/rtmilk/api/lists.rb, line 34
def parse_result(result)
   super
   result['list'].first
end