Sha256: bbc0fb3e5ee80abfb62c8987c92f9381a4494bab75e1f689fe2c938ccf8624d4
Contents?: true
Size: 1.51 KB
Versions: 14
Compression:
Stored size: 1.51 KB
Contents
module GoTransverseTractApi module GeneralLedger class GLAggregateEntry # # @param {Long} eid # @param {String} query_scope (default: 'SHALLOW') # def self.find_by_eid eid, query_scope=nil GoTransverseTractApi.get_response_for(self, {eid: eid, queryScope: query_scope}) end # # @param {Long} gl_account_eid # @param {String} query_scope (default: 'SHALLOW') # def self.find_by_gl_account_eid gl_account_eid, query_scope=nil GoTransverseTractApi.get_response_for(self, {gl_account_eid: gl_account_eid, queryScope: query_scope}) end # # @param {Long} gl_aggregate_batch_eid # @param {String} query_scope (default: 'SHALLOW') # def self.find_by_gl_aggregate_batch_eid gl_aggregate_batch_eid, query_scope=nil GoTransverseTractApi.get_response_for(self, {gl_aggregate_batch_eid: gl_aggregate_batch_eid, queryScope: query_scope}) end # # @param {DateTime} posted_on # @param {String} query_scope (default: 'SHALLOW') # def self.find_by_posted_on posted_on, query_scope=nil GoTransverseTractApi.get_response_for(self, {posted_on: posted_on, queryScope: query_scope}) end # # @param {Long} batch_num # @param {String} query_scope (default: 'SHALLOW') # def self.find_by_batch_num batch_num, query_scope=nil GoTransverseTractApi.get_response_for(self, {batch_num: batch_num, queryScope: query_scope}) end end end end
Version data entries
14 entries across 14 versions & 1 rubygems