Class: SillyPutty::Response
- Inherits:
-
Object
- Object
- SillyPutty::Response
- Defined in:
- lib/silly_putty/base.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(status, body, headers) ⇒ Response
constructor
A new instance of Response.
Constructor Details
#initialize(status, body, headers) ⇒ Response
Returns a new instance of Response.
44 45 46 47 48 |
# File 'lib/silly_putty/base.rb', line 44 def initialize(status, body, headers) @status = status @body = body @headers = headers end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
42 43 44 |
# File 'lib/silly_putty/base.rb', line 42 def body @body end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
42 43 44 |
# File 'lib/silly_putty/base.rb', line 42 def headers @headers end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
42 43 44 |
# File 'lib/silly_putty/base.rb', line 42 def status @status end |