class SmoothOperator::RemoteCall::Typhoeus

Public Class Methods

new(response) click to toggle source
# File lib/smooth_operator/remote_call/typhoeus.rb, line 7
def initialize(response)
  @response = response

  @body = response.body
  @http_status = response.code
  @headers = response.headers_hash
end