class TsigApi::RemoteActions::Response

Attributes

body[RW]
raw_response[RW]
status[RW]

Public Class Methods

new(ret_val, resp) click to toggle source
# File lib/tsig_api/remote_actions.rb, line 12
def initialize(ret_val, resp)
  self.status = ret_val
  self.raw_response = resp
  self.body = resp.body
end