Sha256: 409e6244daf566b3ffc3da146b99e8058fe2270421cbd1b41afb794ffeb92b82
Contents?: true
Size: 771 Bytes
Versions: 9
Compression:
Stored size: 771 Bytes
Contents
module GoTransverseTractApi module GeneralLedger class GLAggregateBatch # # @param {Long} eid # def self.find_by_eid eid GoTransverseTractApi.get_response_for(self, {eid: eid}) end # # @param {String} status # def self.find_by_status status GoTransverseTractApi.get_response_for(self, {status: status}) end # # @param {Boolean} exported # def self.find_by_exported exported GoTransverseTractApi.get_response_for(self, {exported: exported}) end # # @param {DateTime} posted_on # def self.find_by_posted_on posted_on GoTransverseTractApi.get_response_for(self, {posted_on: posted_on}) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems