Class: Dashamail::Response
- Inherits:
-
Object
- Object
- Dashamail::Response
- Defined in:
- lib/dashamail/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#headers ⇒ Object
Returns the value of attribute headers.
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(body: {}, headers: {}) ⇒ Response
constructor
A new instance of Response.
Constructor Details
#initialize(body: {}, headers: {}) ⇒ Response
Returns a new instance of Response.
5 6 7 8 |
# File 'lib/dashamail/response.rb', line 5 def initialize(body: {}, headers: {}) @body = body @headers = headers end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
3 4 5 |
# File 'lib/dashamail/response.rb', line 3 def body @body end |
#headers ⇒ Object
Returns the value of attribute headers.
3 4 5 |
# File 'lib/dashamail/response.rb', line 3 def headers @headers end |
Instance Method Details
#data ⇒ Object
10 11 12 |
# File 'lib/dashamail/response.rb', line 10 def data body.try(:dig, :response, :data) end |