Class: Koala::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/koala/http_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status, body, headers) ⇒ Response

Returns a new instance of Response.



6
7
8
9
10
# File 'lib/koala/http_service.rb', line 6

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

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



5
6
7
# File 'lib/koala/http_service.rb', line 5

def body
  @body
end

#headersObject (readonly)

Returns the value of attribute headers.



5
6
7
# File 'lib/koala/http_service.rb', line 5

def headers
  @headers
end

#statusObject (readonly)

Returns the value of attribute status.



5
6
7
# File 'lib/koala/http_service.rb', line 5

def status
  @status
end