Class: CoreLibrary::HttpRequest
- Inherits:
-
Object
- Object
- CoreLibrary::HttpRequest
- Defined in:
- lib/apimatic-core/http/request/http_request.rb
Overview
An http request.
Instance Attribute Summary collapse
-
#context ⇒ Object
Returns the value of attribute context.
-
#headers ⇒ Object
Returns the value of attribute headers.
-
#http_method ⇒ Object
Returns the value of attribute http_method.
-
#parameters ⇒ Object
Returns the value of attribute parameters.
-
#password ⇒ Object
Returns the value of attribute password.
-
#query_url ⇒ Object
Returns the value of attribute query_url.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#add_header(name, value) ⇒ Object
Add a header to the HttpRequest.
-
#add_parameter(name, value) ⇒ Object
Add a parameter to the HttpRequest.
-
#add_query_parameter(name, value) ⇒ Object
Add a query parameter to the HttpRequest.
-
#initialize(http_method, query_url, headers: {}, parameters: {}, context: {}) ⇒ HttpRequest
constructor
The constructor.
Constructor Details
#initialize(http_method, query_url, headers: {}, parameters: {}, context: {}) ⇒ HttpRequest
The constructor.
14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 14 def initialize(http_method, query_url, headers: {}, parameters: {}, context: {}) @http_method = http_method @query_url = query_url @headers = headers @parameters = parameters @context = context end |
Instance Attribute Details
#context ⇒ Object
Returns the value of attribute context.
4 5 6 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 4 def context @context end |
#headers ⇒ Object
Returns the value of attribute headers.
4 5 6 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 4 def headers @headers end |
#http_method ⇒ Object
Returns the value of attribute http_method.
4 5 6 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 4 def http_method @http_method end |
#parameters ⇒ Object
Returns the value of attribute parameters.
4 5 6 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 4 def parameters @parameters end |
#password ⇒ Object
Returns the value of attribute password.
4 5 6 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 4 def password @password end |
#query_url ⇒ Object
Returns the value of attribute query_url.
4 5 6 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 4 def query_url @query_url end |
#username ⇒ Object
Returns the value of attribute username.
4 5 6 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 4 def username @username end |
Instance Method Details
#add_header(name, value) ⇒ Object
Add a header to the HttpRequest.
29 30 31 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 29 def add_header(name, value) @headers[name] = value end |
#add_parameter(name, value) ⇒ Object
Add a parameter to the HttpRequest.
36 37 38 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 36 def add_parameter(name, value) @parameters[name] = value end |
#add_query_parameter(name, value) ⇒ Object
Add a query parameter to the HttpRequest.
43 44 45 46 47 48 |
# File 'lib/apimatic-core/http/request/http_request.rb', line 43 def add_query_parameter(name, value) @query_url = ApiHelper.append_url_with_query_parameters(@query_url, { name => value }, ArraySerializationFormat::INDEXED) @query_url = ApiHelper.clean_url(@query_url) end |