class RakutenApi::ItemRanking::Client

Constants

REQUEST_PATH

Public Instance Methods

get() click to toggle source
# File lib/rakuten_api/item_ranking/client.rb, line 8
def get
  connection.get(REQUEST_PATH, params)
end
init_params(application_id, affiliate_id) click to toggle source
# File lib/rakuten_api/item_ranking/client.rb, line 16
def init_params(application_id, affiliate_id)
  @params = Params.new(application_id, affiliate_id)
end
request() click to toggle source
# File lib/rakuten_api/item_ranking/client.rb, line 12
def request
  Response.new(get, params.clone)
end