Class: Wavefront::Response::Raw
- Inherits:
-
Object
- Object
- Wavefront::Response::Raw
- Defined in:
- lib/wavefront/response.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ Raw
constructor
A new instance of Raw.
- #to_s ⇒ Object
Constructor Details
#initialize(response) ⇒ Raw
Returns a new instance of Raw.
26 27 28 |
# File 'lib/wavefront/response.rb', line 26 def initialize(response) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
24 25 26 |
# File 'lib/wavefront/response.rb', line 24 def response @response end |
Instance Method Details
#to_s ⇒ Object
30 31 32 |
# File 'lib/wavefront/response.rb', line 30 def to_s return @response end |