# File lib/grape_entity/entity.rb, line 486
    def delegate_attribute(attribute)
      if respond_to?(attribute, true) && Grape::Entity > method(attribute).owner
        send(attribute)
      else
        delegator.delegate(attribute)
      end
    end