Class: Typhoeus::Response
- Inherits:
-
Object
- Object
- Typhoeus::Response
- Defined in:
- lib/typhoeus/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#request ⇒ Object
Returns the value of attribute request.
-
#requested_http_method ⇒ Object
readonly
Returns the value of attribute requested_http_method.
-
#requested_remote_method ⇒ Object
readonly
Returns the value of attribute requested_remote_method.
-
#requested_url ⇒ Object
readonly
Returns the value of attribute requested_url.
-
#start_time ⇒ Object
readonly
Returns the value of attribute start_time.
-
#time ⇒ Object
readonly
Returns the value of attribute time.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ Response
constructor
A new instance of Response.
Constructor Details
#initialize(params = {}) ⇒ Response
Returns a new instance of Response.
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/typhoeus/response.rb', line 8 def initialize(params = {}) @code = params[:code] @headers = params[:headers] @body = params[:body] @time = params[:time] @requested_url = params[:requested_url] @requested_http_method = params[:requested_http_method] @start_time = params[:start_time] @request = params[:request] end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
4 5 6 |
# File 'lib/typhoeus/response.rb', line 4 def body @body end |
#code ⇒ Object (readonly)
Returns the value of attribute code.
4 5 6 |
# File 'lib/typhoeus/response.rb', line 4 def code @code end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
4 5 6 |
# File 'lib/typhoeus/response.rb', line 4 def headers @headers end |
#request ⇒ Object
Returns the value of attribute request.
3 4 5 |
# File 'lib/typhoeus/response.rb', line 3 def request @request end |
#requested_http_method ⇒ Object (readonly)
Returns the value of attribute requested_http_method.
4 5 6 |
# File 'lib/typhoeus/response.rb', line 4 def requested_http_method @requested_http_method end |
#requested_remote_method ⇒ Object (readonly)
Returns the value of attribute requested_remote_method.
4 5 6 |
# File 'lib/typhoeus/response.rb', line 4 def requested_remote_method @requested_remote_method end |
#requested_url ⇒ Object (readonly)
Returns the value of attribute requested_url.
4 5 6 |
# File 'lib/typhoeus/response.rb', line 4 def requested_url @requested_url end |
#start_time ⇒ Object (readonly)
Returns the value of attribute start_time.
4 5 6 |
# File 'lib/typhoeus/response.rb', line 4 def start_time @start_time end |
#time ⇒ Object (readonly)
Returns the value of attribute time.
4 5 6 |
# File 'lib/typhoeus/response.rb', line 4 def time @time end |