Sha256: 037b7312f7706a25c64813134c9002f850a3c4993d948bfbfc66bd1403a2f42c
Contents?: true
Size: 1.01 KB
Versions: 14
Compression:
Stored size: 1.01 KB
Contents
module GoTransverseTractApi module Usage class GlobalUsageRule class << self def find_by_all GoTransverseTractApi.get_response_for(self) end # # @param {Long} eid # @param {String} query_scope (default: 'SHALLOW') # def find_by_eid eid, query_scope=nil GoTransverseTractApi.get_response_for(self, {eid: eid, queryScope: query_scope}) end # # @param {Boolean} is_global # @param {String} query_scope (default: 'SHALLOW') # def find_by_is_global is_global, query_scope=nil GoTransverseTractApi.get_response_for(self, {is_global: is_global, queryScope: query_scope}) end # # @param {String} status # @param {String} query_scope (default: 'SHALLOW') # def find_by_status status, query_scope=nil GoTransverseTractApi.get_response_for(self, {status: status, queryScope: query_scope}) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems