class TShield::Response
Attributes
body[R]
headers[R]
original[RW]
status[R]
Public Class Methods
new(body, headers, status)
click to toggle source
# File lib/tshield/response.rb, line 9 def initialize(body, headers, status) @body = body @headers = headers @status = status end