class Solr::Request::HttpRequest

Attributes

body[R]
method[R]
path[R]
url_params[R]

Public Class Methods

new(path: '/', body: {}, url_params: {}, method: :get) click to toggle source
# File lib/solr/request/http_request.rb, line 6
def initialize(path: '/', body: {}, url_params: {}, method: :get)
  @path = path
  @body = body
  @url_params = url_params
  @method = method
end