module Lazada::API::Feed

Public Instance Methods

feed_list() click to toggle source
# File lib/lazada_dino/api/feed.rb, line 11
def feed_list
  url = request_url('FeedList')
  response = self.class.get(url)

  response
end
feed_status(id) click to toggle source
# File lib/lazada_dino/api/feed.rb, line 4
def feed_status(id)
  url = request_url('FeedStatus', { 'FeedID' => id })
  response = self.class.get(url)

  response
end