class KayakoClient::HTTPResponse

Attributes

body[RW]
status[RW]

Public Class Methods

new(status, body = '') click to toggle source
# File lib/kayako_client/http/http_response.rb, line 20
def initialize(status, body = '')
    @status = status
    @body = body
end