class RDMM2::ItemListOperation
Constants
- DEFAULT_SITE
- OPERATION
- SITE_DMM_COM
- SITE_DMM_CO_JP
Public Class Methods
new(account_id, affiliate_id)
click to toggle source
# File lib/rdmm2.rb, line 24 def initialize(account_id, affiliate_id) @account_id = account_id @affiliate_id = affiliate_id end
Public Instance Methods
request(options = {})
click to toggle source
# File lib/rdmm2.rb, line 29 def request(options = {}) params = { :account_id => @account_id, :affiliate_id => @affiliate_id, :version => API_VERSION, :operation => OPERATION, :site => DEFAULT_SITE, } params.merge(options) RDMM2::Request.new(params) end