Sha256: 4cae03dfb582aef110e56866aa0b20e2388821db0eeb308bde213f03f62ebb6d
Contents?: true
Size: 701 Bytes
Versions: 27
Compression:
Stored size: 701 Bytes
Contents
module GoTransverseTractApi module Service class ServiceResourceCategory 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} type # def find_by_type type GoTransverseTractApi.get_response_for(self, {type: type}) end end end end end
Version data entries
27 entries across 27 versions & 1 rubygems