class Setka::Workflow::Response
Attributes
body[R]
code[R]
headers[R]
Public Class Methods
new(raw_response)
click to toggle source
# File lib/setka/workflow/response.rb, line 6 def initialize(raw_response) @code = raw_response.status @body = raw_response.body @headers = raw_response.headers end