Sha256: c0f920715a56c4e4f3611955a4db4c087b336396d27d367da1a346a83f5f3d89
Contents?: true
Size: 467 Bytes
Versions: 37
Compression:
Stored size: 467 Bytes
Contents
module Catalogcat class Client < Footrest::Client module Catalogs def list_catalogs(params = {}) get('/api/v1/catalogs', params) end def applicants(params = {}) get('/api/v1/applicants', params) end def completed_certificates(params = {}) get('/api/v1/completed_certificates', params) end def get_order(id, params = {}) get("/api/v1/orders/#{id}", params) end end end end
Version data entries
37 entries across 37 versions & 1 rubygems