Class: Commentatr::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/commentatr/response.rb

Defined Under Namespace

Classes: ResponseBody

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code, body) ⇒ Response

Returns a new instance of Response.



5
6
7
8
9
10
# File 'lib/commentatr/response.rb', line 5

def initialize(code, body)
  @code = code
  unless body.nil?
    @body = ResponseBody.new(body["success"], body["data"], body["errors"])
  end
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



3
4
5
# File 'lib/commentatr/response.rb', line 3

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



3
4
5
# File 'lib/commentatr/response.rb', line 3

def code
  @code
end