Sha256: 203dd689d4a32b2fdf14148c8e0bae30dd0767dd9fb7edef668a2e773141f428
Contents?: true
Size: 704 Bytes
Versions: 25
Compression:
Stored size: 704 Bytes
Contents
module GoTransverseTractApi module Order class AdjustmentCategory 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 {String} name # def find_by_name name GoTransverseTractApi.get_response_for(self, {name: name}) end # # @param {String} status # def find_by_status status GoTransverseTractApi.get_response_for(self, {status: status}) end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems