class ARI::Response

@!attribute [r] status

@return [Integer] http status

@!attribute [r] body

@return [String] response body

@!attribute [r] headers

@return [String] response headers

Attributes

body[R]
headers[R]
status[R]

Public Class Methods

new(status, body, headers) click to toggle source
# File lib/ari/response.rb, line 10
def initialize(status, body, headers)
  @status  = status
  @body    = body
  @headers = headers
end