class Gitlab::ObjectifiedHash

def respond_to_missing?(method_name, include_private = false)

def respond_to_missing?(method_name, include_private = false)
  hash.keys.map(&:to_sym).include?(method_name.to_sym) || super
end