class Taobao::AbstractList

Public Class Methods

new(opts) click to toggle source
# File lib/taobao/abstract_list.rb, line 4
def initialize(opts)
  @opts = opts
end

Private Instance Methods

cached_responce() click to toggle source
# File lib/taobao/abstract_list.rb, line 9
def cached_responce
  @response ||= retrieve_response
end
clear_response() click to toggle source
# File lib/taobao/abstract_list.rb, line 13
def clear_response
  @response = nil
end