Sha256: ba18ddab1ff5d579acbe7eba8cee63ecd167eb0b2acad719c1332b558477ce92
Contents?: true
Size: 900 Bytes
Versions: 4
Compression:
Stored size: 900 Bytes
Contents
module GoTransverseTractApi module GeneralLedger class GLAggregateEntry # # @param {Long} eid # def self.find_by_eid eid GoTransverseTractApi.get_response_for(self.class, {eid: eid}) end # # @param {Long} gl_account_eid # def self.find_by_gl_account_eid gl_account_eid GoTransverseTractApi.get_response_for(self.class, {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.class, {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.class, {posted_on: posted_on}) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems