Sha256: 0142cf3324f2d6159cd0f243e03af5967b850376a13e1671dcd34c5163d93b3b
Contents?: true
Size: 770 Bytes
Versions: 14
Compression:
Stored size: 770 Bytes
Contents
module GoTransverseTractApi module BillingAccount class StandardInvoiceAdjustmentApplication < AdjustmentApplication class << self # # @param {Long} invoice_eid # @param {String} query_scope (default: 'SHALLOW') # def find_by_invoice_eid invoice_eid, query_scope=nil GoTransverseTractApi.get_response_for(self, {invoice_eid: invoice_eid, queryScope: query_scope}) end # # @param {Long} invoice_num # @param {String} query_scope (default: 'SHALLOW') # def find_by_invoice_num invoice_num, query_scope=nil GoTransverseTractApi.get_response_for(self, {invoice_num: invoice_num, queryScope: query_scope}) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems