Sha256: 79ca5b5ac1e15984bb1477257831ffcb172878c15957afa787e0ffaba0defd48
Contents?: true
Size: 707 Bytes
Versions: 14
Compression:
Stored size: 707 Bytes
Contents
module GoTransverseTractApi module BillingAccount class AdjustmentApplication class << self # # @param {Long} eid # @param {String} query_scope (default: 'SHALLOW') # def find_by_eid eid, query_scope=nil GoTransverseTractApi.get_response_for(self, {eid: eid, queryScope: query_scope}) end # # @param {Long} adjustment_eid # @param {String} query_scope (default: 'SHALLOW') # def find_by_adjustment_eid adjustment_eid, query_scope=nil GoTransverseTractApi.get_response_for(self, {adjustment_eid: adjustment_eid, queryScope: query_scope}) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems