Sha256: a2cef05b83055c2ea93664e7e18505751d5e6680e8c34c968af1697b5462f3ab
Contents?: true
Size: 1.23 KB
Versions: 14
Compression:
Stored size: 1.23 KB
Contents
module GoTransverseTractApi module Usage class UsageLookupTableEntry class << self # # @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 {Long} usage_lookup_table_eid # @param {String} query_scope (default: 'SHALLOW') # def find_by_usage_lookup_table_eid usage_lookup_table_eid, query_scope=nil GoTransverseTractApi.get_response_for(self, {usage_lookup_table_eid: usage_lookup_table_eid, queryScope: query_scope}) end # # @param {String} key # @param {String} query_scope (default: 'SHALLOW') # def find_by_key key, query_scope=nil GoTransverseTractApi.get_response_for(self, {key: key, queryScope: query_scope}) end # # @param {String} value # @param {String} query_scope (default: 'SHALLOW') # def find_by_value value, query_scope=nil GoTransverseTractApi.get_response_for(self, {value: value, queryScope: query_scope}) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems