class HTTParty::Response

def respond_to_missing?(name, *args)

def respond_to_missing?(name, *args)
  return true if super
  parsed_response.respond_to?(name) || response.respond_to?(name)
end