class Koala::HTTPService::Response

Attributes

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

Public Class Methods

new(status, body, headers) click to toggle source

Creates a new Response object, which standardizes the response received by Facebook for use within Koala.

# File lib/koala/http_service/response.rb, line 7
def initialize(status, body, headers)
  @status = status
  @body = body
  @headers = headers
end