class HoundListSync::Http::Response
Attributes
body[R]
headers[R]
status[R]
Public Class Methods
new(status, headers, body)
click to toggle source
# File lib/hound_list_sync/http.rb, line 11 def initialize(status, headers, body) @status = status @headers = headers @body = body end