# File lib/openstack-quantum-client/l2l3.rb, line 59
      def send_to_quantum(http_method, post_url, info)
        response = HTTParty.send(
          http_method,
          post_url,
          :body => info.to_json,
          :headers => {"Content-Type" => "application/json"}
        )
        response
      end