Sha256: 1b7232df9e51614eddb15661c30ce24a3eaeb3952f48e463dad40b51e2e58dd9
Contents?: true
Size: 1.59 KB
Versions: 25
Compression:
Stored size: 1.59 KB
Contents
module GoTransverseTractApi module GeneralLedger class GLAdjustmentAccountingTransaction class << self # # @param {Long} eid # def find_by_eid eid GoTransverseTractApi.get_response_for(self, {eid: eid}) end # # @param {Long} batch_num # def find_by_batch_num batch_num GoTransverseTractApi.get_response_for(self, {batch_num: batch_num}) end # # @param {Long} gl_transaction_batch_eid # def find_by_gl_transaction_batch_eid gl_transaction_batch_eid GoTransverseTractApi.get_response_for(self, {gl_transaction_batch_eid: gl_transaction_batch_eid}) end # # @param {String} currency_type # def find_by_currency_type currency_type GoTransverseTractApi.get_response_for(self, {currency_type: currency_type}) end # # @param {String} original_currency_type # def find_by_original_currency_type original_currency_type GoTransverseTractApi.get_response_for(self, {original_currency_type: original_currency_type}) end # # @param {DateTime} occurred_on # def find_by_occurred_on occurred_on GoTransverseTractApi.get_response_for(self, {occurred_on: occurred_on}) end # # @param {DateTime} batch_posted_on # def find_by_batch_posted_on batch_posted_on GoTransverseTractApi.get_response_for(self, {batch_posted_on: batch_posted_on}) end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems