Class: Gameopedia::Response
- Inherits:
-
Object
- Object
- Gameopedia::Response
- Defined in:
- lib/gameopedia/response.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#code ⇒ Object
readonly
Returns the value of attribute code.
Instance Method Summary collapse
-
#initialize(code:, body:) ⇒ Response
constructor
A new instance of Response.
Constructor Details
#initialize(code:, body:) ⇒ Response
Returns a new instance of Response.
5 6 7 8 |
# File 'lib/gameopedia/response.rb', line 5 def initialize(code:, body:) @code = code @body = body end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
10 11 12 |
# File 'lib/gameopedia/response.rb', line 10 def body @body end |
#code ⇒ Object (readonly)
Returns the value of attribute code.
10 11 12 |
# File 'lib/gameopedia/response.rb', line 10 def code @code end |