module Halo module Metadata module Halo5 class Requisition < APIResponse def initialize(options = {}) super(options) end def find(id, options = {}) get_data("/requisitions/#{id}", options) end end end end end