Sha256: f8472f431e08b8e7e4b66ab37b9f3ccf9ea8e881ac1f140c49de8b137e8bd72a
Contents?: true
Size: 977 Bytes
Versions: 14
Compression:
Stored size: 977 Bytes
Contents
module GoTransverseTractApi module BillingAccount class InvoiceItem 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} 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 # # @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 end end end end
Version data entries
14 entries across 14 versions & 1 rubygems