Class: Workarea::Orderbot::Response
- Inherits:
-
Object
- Object
- Workarea::Orderbot::Response
- Defined in:
- lib/workarea/orderbot/response.rb
Instance Method Summary collapse
- #body ⇒ Object
- #error_details ⇒ Object
- #headers ⇒ Object
-
#initialize(response) ⇒ Response
constructor
A new instance of Response.
- #success? ⇒ Boolean
- #total_pages ⇒ Object
Constructor Details
#initialize(response) ⇒ Response
Returns a new instance of Response.
4 5 6 |
# File 'lib/workarea/orderbot/response.rb', line 4 def initialize(response) @response = response end |
Instance Method Details
#body ⇒ Object
12 13 14 |
# File 'lib/workarea/orderbot/response.rb', line 12 def body @body ||= JSON.parse(@response.body) end |
#error_details ⇒ Object
24 25 26 |
# File 'lib/workarea/orderbot/response.rb', line 24 def error_details body["errors"].to_s end |
#headers ⇒ Object
16 17 18 |
# File 'lib/workarea/orderbot/response.rb', line 16 def headers @headers ||= @response.headers end |
#success? ⇒ Boolean
8 9 10 |
# File 'lib/workarea/orderbot/response.rb', line 8 def success? @response.success? end |
#total_pages ⇒ Object
20 21 22 |
# File 'lib/workarea/orderbot/response.rb', line 20 def total_pages headers["x-total-pages"] end |