Sha256: 2323e71d5d6423ce337b96cec5a6b4c6ca915428f352736f2ee1e1bf2b58a58a
Contents?: true
Size: 1.02 KB
Versions: 25
Compression:
Stored size: 1.02 KB
Contents
module GoTransverseTractApi module Order class PaymentTerm class << self def find_all GoTransverseTractApi.get_response_for(self) end # # @param {Long} eid # def find_by_eid eid GoTransverseTractApi.get_response_for(self, {eid: eid}) end # # @param {Long} billing_account_category_eid # def find_by_billing_account_category_eid billing_account_category_eid GoTransverseTractApi.get_response_for(self, {billing_account_category_eid: billing_account_category_eid}) end # # @param {Long} billing_account_eid # def find_by_billing_account_eid billing_account_eid GoTransverseTractApi.get_response_for(self, {billing_account_eid: billing_account_eid}) end # # @param {String} name # def find_by_name name GoTransverseTractApi.get_response_for(self, {name: name}) end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems