class RestClientWrapper::Response
Attributes
body[R]
code[R]
headers[R]
Public Class Methods
new(headers, body, code)
click to toggle source
# File lib/rest_client_wrapper/response.rb, line 26 def initialize(headers, body, code) @headers = headers @body = body @code = code end