# File lib/grape_entity/entity.rb, line 411
    def self.root_element(root_type)
      if instance_variable_get("@#{root_type}")
        instance_variable_get("@#{root_type}")
      elsif superclass.respond_to? :root_element
        superclass.root_element(root_type)
      end
    end