module Lvmama::Client::TicketProd

Constants

ENDPOINT

Public Instance Methods

good_info_list(goods_ids, options={}) click to toggle source
# File lib/lvmama-api/client/ticket_prod.rb, line 32
def good_info_list goods_ids, options={}
  options[:goodsIds] = goods_ids
  response = post ENDPOINT + "goodInfoList", options
  response
end
good_price_list(goods_ids, begin_date, end_date, options={}) click to toggle source
# File lib/lvmama-api/client/ticket_prod.rb, line 38
def good_price_list goods_ids, begin_date, end_date, options={}
  options[:goodsIds] = goods_ids
  options[:beginDate] = begin_date
  options[:endDate] = end_date
  response = post ENDPOINT + "goodPriceList", options
  response
end
product_info_list(product_ids, options={}) click to toggle source
# File lib/lvmama-api/client/ticket_prod.rb, line 26
def product_info_list product_ids, options={}
  options[:productIds] = product_ids
  response = post ENDPOINT + "productInfoList", options
  response
end
product_info_list_by_page(current_page, options={}) click to toggle source
# File lib/lvmama-api/client/ticket_prod.rb, line 12
def product_info_list_by_page current_page, options={}
  options[:currentPage] = current_page
  response = post ENDPOINT + "productInfoListByPage", options
  response
end
product_price_list_by_page(current_page, begin_date, end_date, options={}) click to toggle source
# File lib/lvmama-api/client/ticket_prod.rb, line 18
def product_price_list_by_page current_page, begin_date, end_date, options={}
  options[:currentPage] = current_page
  options[:beginDate] = begin_date
  options[:endDate] = end_date
  response = post ENDPOINT + "productPriceListByPage", options
  response
end
scenic_info_list_by_page(current_page, options={}) click to toggle source
# File lib/lvmama-api/client/ticket_prod.rb, line 6
def scenic_info_list_by_page current_page, options={}
  options[:currentPage] = current_page
  response = post ENDPOINT + "scenicInfoListByPage", options
  response
end