Class: TShield::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/tshield/response.rb

Overview

Response Object

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(body, headers, status) ⇒ Response

Returns a new instance of Response.



9
10
11
12
13
# File 'lib/tshield/response.rb', line 9

def initialize(body, headers, status)
  @body = body
  @headers = headers
  @status = status
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



7
8
9
# File 'lib/tshield/response.rb', line 7

def body
  @body
end

#headersObject (readonly)

Returns the value of attribute headers.



7
8
9
# File 'lib/tshield/response.rb', line 7

def headers
  @headers
end

#originalObject

Returns the value of attribute original.



6
7
8
# File 'lib/tshield/response.rb', line 6

def original
  @original
end

#statusObject (readonly)

Returns the value of attribute status.



7
8
9
# File 'lib/tshield/response.rb', line 7

def status
  @status
end