Class: Dyn::HttpClient::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/dyn/http/http_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status, body, headers) ⇒ Response

Returns a new instance of Response.



83
84
85
86
87
# File 'lib/dyn/http/http_client.rb', line 83

def initialize(status, body, headers)
  @status  = status
  @body    = body
  @headers = headers
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



81
82
83
# File 'lib/dyn/http/http_client.rb', line 81

def body
  @body
end

#headersObject (readonly)

Returns the value of attribute headers.



81
82
83
# File 'lib/dyn/http/http_client.rb', line 81

def headers
  @headers
end

#statusObject (readonly)

Returns the value of attribute status.



81
82
83
# File 'lib/dyn/http/http_client.rb', line 81

def status
  @status
end