Sha256: a0ec2e7826dbb2e38a86287c77eecb58fe3e85be6a280041b4109210077311da
Contents?: true
Size: 1.44 KB
Versions: 22
Compression:
Stored size: 1.44 KB
Contents
module GoTransverseTractApi module Product class DiscountIdentifier class << self # # @param {Hash} options # def find_all options={} params ||= GoTransverseTractApi::ApiData.new.get_query_params({}, options) GoTransverseTractApi.get_response_for(self, params) end # # @param {Long} eid # @param {Hash} options # def find_by_eid eid, options={} return nil unless eid.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({eid: eid}, options) GoTransverseTractApi.get_response_for(self, params) end # # @param {Long} identifier # @param {Hash} options # def find_by_identifier identifier, options={} return nil unless identifier.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({identifier: identifier}, options) GoTransverseTractApi.get_response_for(self, params) end # # @param {Long} order_item_eid # @param {Hash} options # def find_by_order_item_eid order_item_eid, options={} return nil unless order_item_eid.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({order_item_eid: order_item_eid}, options) GoTransverseTractApi.get_response_for(self, params) end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems