Class: Typhoeus::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/typhoeus/response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ Response

Returns a new instance of Response.



7
8
9
10
11
12
13
14
15
# File 'lib/typhoeus/response.rb', line 7

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]
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



3
4
5
# File 'lib/typhoeus/response.rb', line 3

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



3
4
5
# File 'lib/typhoeus/response.rb', line 3

def code
  @code
end

#headersObject (readonly)

Returns the value of attribute headers.



3
4
5
# File 'lib/typhoeus/response.rb', line 3

def headers
  @headers
end

#requested_http_methodObject (readonly)

Returns the value of attribute requested_http_method.



3
4
5
# File 'lib/typhoeus/response.rb', line 3

def requested_http_method
  @requested_http_method
end

#requested_remote_methodObject (readonly)

Returns the value of attribute requested_remote_method.



3
4
5
# File 'lib/typhoeus/response.rb', line 3

def requested_remote_method
  @requested_remote_method
end

#requested_urlObject (readonly)

Returns the value of attribute requested_url.



3
4
5
# File 'lib/typhoeus/response.rb', line 3

def requested_url
  @requested_url
end

#start_timeObject (readonly)

Returns the value of attribute start_time.



3
4
5
# File 'lib/typhoeus/response.rb', line 3

def start_time
  @start_time
end

#timeObject (readonly)

Returns the value of attribute time.



3
4
5
# File 'lib/typhoeus/response.rb', line 3

def time
  @time
end