Sha256: 19f4d67b10ed3c5327ab3b445f213331810c8434374e6f244f5d6c6feb47e6b4

Contents?: true

Size: 947 Bytes

Versions: 14

Compression:

Stored size: 947 Bytes

Contents

module GoTransverseTractApi

  module Product

    class DiscountCategory

      def self.find_all
        GoTransverseTractApi.get_response_for(self)
      end

      #
      # @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 {String} name
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_name name, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {name: name, queryScope: query_scope})
      end

      #
      # @param {String} status
      # @param {String} query_scope (default: 'SHALLOW')
      #
      def self.find_by_status status, query_scope=nil
        GoTransverseTractApi.get_response_for(self, {status: status, 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/discount_category.rb
gotransverse-tract-api-0.7.3 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.7.2 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.7.1 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.7.0 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.6.7 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.6.6 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.6.5 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.6.4 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.6.3 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.6.2 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.6.1 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.6.0 lib/gotransverse-tract-api/product/discount_category.rb
gotransverse-tract-api-0.5.3 lib/gotransverse-tract-api/product/discount_category.rb