module Fulfillment module Resources module Types extend self def find_all response = Request.new("types").get response.body end def find(type_name) response = Request.new("types/#{type_name}").get response.body end end end end