Sha256: 556ab4a4a2a102cfce6966aa1779b97cec4af1521c709e77ca23c10f72b5c9ac
Contents?: true
Size: 1.03 KB
Versions: 25
Compression:
Stored size: 1.03 KB
Contents
module GoTransverseTractApi module GeneralLedger class GLAggregateEntry # # @param {Long} eid # def self.find_by_eid eid GoTransverseTractApi.get_response_for(self, {eid: eid}) end # # @param {Long} gl_account_eid # def self.find_by_gl_account_eid gl_account_eid GoTransverseTractApi.get_response_for(self, {gl_account_eid: gl_account_eid}) end # # @param {Long} gl_aggregate_batch_eid # def self.find_by_gl_aggregate_batch_eid gl_aggregate_batch_eid GoTransverseTractApi.get_response_for(self, {gl_aggregate_batch_eid: gl_aggregate_batch_eid}) end # # @param {DateTime} posted_on # def self.find_by_posted_on posted_on GoTransverseTractApi.get_response_for(self, {posted_on: posted_on}) end # # @param {Long} batch_num # def self.find_by_batch_num batch_num GoTransverseTractApi.get_response_for(self, {batch_num: batch_num}) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems