class Grape::Util::StackableValues

def to_hash

def to_hash
  keys.each_with_object({}) do |key, result|
    result[key] = self[key]
  end
end