Class: Mock::Twilio::Response
- Inherits:
-
Object
- Object
- Mock::Twilio::Response
- Defined in:
- lib/mock/twilio/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#headers ⇒ Object
Returns the value of attribute headers.
-
#status_code ⇒ Object
Returns the value of attribute status_code.
Instance Method Summary collapse
-
#initialize(status_code, body, request, headers: nil) ⇒ Response
constructor
A new instance of Response.
- #to_s ⇒ Object
Constructor Details
#initialize(status_code, body, request, headers: nil) ⇒ Response
Returns a new instance of Response.
8 9 10 11 12 13 |
# File 'lib/mock/twilio/response.rb', line 8 def initialize(status_code, body, request, headers: nil) @status_code = status_code body = '{}' if !body || body.empty? @body = Mock::Twilio::Decorator.call(body, request) @headers = !headers ? {} : headers.to_hash end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
6 7 8 |
# File 'lib/mock/twilio/response.rb', line 6 def body @body end |
#headers ⇒ Object
Returns the value of attribute headers.
6 7 8 |
# File 'lib/mock/twilio/response.rb', line 6 def headers @headers end |
#status_code ⇒ Object
Returns the value of attribute status_code.
6 7 8 |
# File 'lib/mock/twilio/response.rb', line 6 def status_code @status_code end |
Instance Method Details
#to_s ⇒ Object
15 16 17 |
# File 'lib/mock/twilio/response.rb', line 15 def to_s "[#{status_code}] #{body}" end |