Sha256: cd271ffb91dac97e4f47559261a228f31e0deb93517723649e1b5c8c9de8082a
Contents?: true
Size: 767 Bytes
Versions: 32
Compression:
Stored size: 767 Bytes
Contents
module GoTransverseTractApi module Product class Action # # @param {Long} eid # @param {Hash} options # def self.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} product_eid # @param {Hash} options # def self.find_by_product_eid product_eid, options={} return nil unless product_eid.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({product_eid: product_eid}, options) GoTransverseTractApi.get_response_for(self, params) end end end end
Version data entries
32 entries across 32 versions & 1 rubygems