Sha256: 3651cda9a030be79fb48f8a1f764207cea95b26d87144abbb8dbdb98b6b223db

Contents?: true

Size: 1.84 KB

Versions: 14

Compression:

Stored size: 1.84 KB

Contents

module GoTransverseTractApi

  module Product

    class ProductPriceRange

      #
      # @param {Long} eid
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_eid eid, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {eid: eid, queryScope: query_scope})
      end

      #
      # @param {Long} product_eid
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_product_eid product_eid, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {product_eid: product_eid, queryScope: query_scope})
      end

      #
      # @param {Long} product_price_eid
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_product_price_eid product_price_eid, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {product_price_eid: product_price_eid, queryScope: query_scope})
      end

      #
      # @param {Long} price_list_eid
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_price_list_eid price_list_eid, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {price_list_eid: price_list_eid, queryScope: query_scope})
      end

      #
      # @param {Boolean} price_list_is_master
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_price_list_is_master price_list_is_master, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {price_list_is_master: price_list_is_master, queryScope: query_scope})
      end

      #
      # @param {String} currency_type
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_currency_type currency_type, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {currency_type: currency_type, queryScope: query_scope})
      end

    end

  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
gotransverse-tract-api-0.7.4 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.7.3 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.7.2 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.7.1 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.7.0 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.6.7 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.6.6 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.6.5 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.6.4 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.6.3 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.6.2 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.6.1 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.6.0 lib/gotransverse-tract-api/product/product_price_range.rb
gotransverse-tract-api-0.5.3 lib/gotransverse-tract-api/product/product_price_range.rb