Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
module Quickbooks
  module Service
    class Batch < BaseService

      def make_request(entity, options = {})
        response = do_http_post(url_for_resource('batch'), valid_xml_document(entity.to_xml_ns))
        Quickbooks::Model::BatchResponse.from_xml(response.plain_body)
      end
    end
  end
end