Sha256: f7c7845732ee4b31e36334a028793ca0c21b47f4f7483b30cfd7f4eaaac06975
Contents?: true
Size: 1.36 KB
Versions: 32
Compression:
Stored size: 1.36 KB
Contents
module GoTransverseTractApi module Order class BillingAccountCategory class << self # # @param {Hash} options # def find_all options={} params ||= GoTransverseTractApi::ApiData.new.get_query_params({}, options) GoTransverseTractApi.get_response_for(self, params) end # # @param {Long} eid # @param {Hash} options # def find_by_eid eid, options={} return nil unless eid.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({eid: eid}, options) GoTransverseTractApi.get_response_for(self, params) end # # @param {String} desc # @param {Hash} options # def find_by_desc desc, options={} return nil unless desc.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({desc: desc}, options) GoTransverseTractApi.get_response_for(self, params) end # # @param {String} status # @param {Hash} options # def find_by_status status, options={} return nil unless status.present? params ||= GoTransverseTractApi::ApiData.new.get_query_params({status: status}, options) GoTransverseTractApi.get_response_for(self, params) end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems