Class: CdekApi::Response
- Inherits:
-
Object
- Object
- CdekApi::Response
- Defined in:
- lib/cdek_api/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
-
#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/cdek_api/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/cdek_api/response.rb', line 3 def body @body end |
#headers ⇒ Object
Returns the value of attribute headers.
3 4 5 |
# File 'lib/cdek_api/response.rb', line 3 def headers @headers end |