Sha256: 8a516fac862446036925b78425753eb4b9674390bf65f49e0ce0cf231ab6dd41
Contents?: true
Size: 1.53 KB
Versions: 14
Compression:
Stored size: 1.53 KB
Contents
module GoTransverseTractApi module Order class BillCycle class << self def find_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 {String} name # @param {String} query_scope (default: 'SHALLOW') # def find_by_name name, query_scope=nil GoTransverseTractApi.get_response_for(self, {name: name, queryScope: query_scope}) end # # @param {String} type # @param {String} query_scope (default: 'SHALLOW') # def find_by_type type, query_scope=nil GoTransverseTractApi.get_response_for(self, {type: type, 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 # # @param {String} currency_type # @param {String} query_scope (default: 'SHALLOW') # def find_by_currency_type currency_type, query_scope=nil GoTransverseTractApi.get_response_for(self, {currency_type: currency_type, queryScope: query_scope}) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems