Sha256: 600675156458c8a9e45948bef999220d07c9047316ae61cfab296c924d138345
Contents?: true
Size: 866 Bytes
Versions: 32
Compression:
Stored size: 866 Bytes
Contents
module GoTransverseTractApi module BillingAccount class AdjustmentApplication class << self # # @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} adjustment_eid # @param {Hash} options # def find_by_adjustment_eid adjustment_eid, options={} return nil unless adjustment_eid.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({adjustment_eid: adjustment_eid}, options) GoTransverseTractApi.get_response_for(self, params) end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems