Class: ApimaticCalculator::HttpResponse
- Inherits:
-
Object
- Object
- ApimaticCalculator::HttpResponse
- Defined in:
- lib/apimatic_calculator/http/http_response.rb
Overview
Http response received.
Instance Attribute Summary collapse
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#raw_body ⇒ Object
readonly
Returns the value of attribute raw_body.
-
#reason_phrase ⇒ Object
readonly
Returns the value of attribute reason_phrase.
-
#request ⇒ Object
readonly
Returns the value of attribute request.
-
#status_code ⇒ Object
readonly
Returns the value of attribute status_code.
Instance Method Summary collapse
-
#initialize(status_code, reason_phrase, headers, raw_body, request) ⇒ HttpResponse
constructor
The constructor.
Constructor Details
#initialize(status_code, reason_phrase, headers, raw_body, request) ⇒ HttpResponse
The constructor
17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/apimatic_calculator/http/http_response.rb', line 17 def initialize(status_code, reason_phrase, headers, raw_body, request) @status_code = status_code @reason_phrase = reason_phrase @headers = headers @raw_body = raw_body @request = request end |
Instance Attribute Details
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
9 10 11 |
# File 'lib/apimatic_calculator/http/http_response.rb', line 9 def headers @headers end |
#raw_body ⇒ Object (readonly)
Returns the value of attribute raw_body.
9 10 11 |
# File 'lib/apimatic_calculator/http/http_response.rb', line 9 def raw_body @raw_body end |
#reason_phrase ⇒ Object (readonly)
Returns the value of attribute reason_phrase.
9 10 11 |
# File 'lib/apimatic_calculator/http/http_response.rb', line 9 def reason_phrase @reason_phrase end |
#request ⇒ Object (readonly)
Returns the value of attribute request.
9 10 11 |
# File 'lib/apimatic_calculator/http/http_response.rb', line 9 def request @request end |
#status_code ⇒ Object (readonly)
Returns the value of attribute status_code.
9 10 11 |
# File 'lib/apimatic_calculator/http/http_response.rb', line 9 def status_code @status_code end |