Sha256: 35f188ccf4b6dbc1b074e8f6aec525f2d9549adf3580e90d682e9063bb36f7c0
Contents?: true
Size: 1.06 KB
Versions: 10
Compression:
Stored size: 1.06 KB
Contents
module GoTransverseTractApi module Product class ProductPriceRange # # @param {Long} eid # def self.find_by_eid eid GoTransverseTractApi.get_response_for(self, {eid: eid}) end # # @param {Long} product_eid # def self.find_by_product_eid product_eid GoTransverseTractApi.get_response_for(self, {product_eid: product_eid}) end # # @param {Long} product_price_eid # def self.find_by_product_price_eid product_price_eid GoTransverseTractApi.get_response_for(self, {product_price_eid: product_price_eid}) end # # @param {Long} price_list_eid # def self.find_by_price_list_eid price_list_eid GoTransverseTractApi.get_response_for(self, {price_list_eid: price_list_eid}) end # # @param {Boolean} price_list_is_master # def self.find_by_price_list_is_master price_list_is_master GoTransverseTractApi.get_response_for(self, {price_list_is_master: price_list_is_master}) end end end end
Version data entries
10 entries across 10 versions & 1 rubygems