Sha256: 4bf2a288894c31017a2f7316b8b72248a212ac3e90eb07e1a107999548e3fa82
Contents?: true
Size: 652 Bytes
Versions: 34
Compression:
Stored size: 652 Bytes
Contents
module GoTransverseTractApi module GeneralLedger class GeneralLedger def self.find_all GoTransverseTractApi.get_response_for(self) end # # @param {Long} eid # def self.find_by_eid eid GoTransverseTractApi.get_response_for(self, {eid: eid}) end # # @param {String} name # def self.find_by_name name GoTransverseTractApi.get_response_for(self, {name: name}) end # # @param {String} status # def self.find_by_status status GoTransverseTractApi.get_response_for(self, {status: status}) end end end end
Version data entries
34 entries across 34 versions & 1 rubygems