Class: Keepcon::Entity::Response

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(http_response) ⇒ Response

Returns a new instance of Response.



6
7
8
9
# File 'lib/keepcon/entity/response.rb', line 6

def initialize(http_response)
  self.body = http_response.body
  self.status = http_response.status
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



4
5
6
# File 'lib/keepcon/entity/response.rb', line 4

def body
  @body
end

#statusObject

Returns the value of attribute status.



4
5
6
# File 'lib/keepcon/entity/response.rb', line 4

def status
  @status
end

Instance Method Details

#dataObject



11
12
13
# File 'lib/keepcon/entity/response.rb', line 11

def data
  @data ||= (body.blank? && {}) || Hash.from_xml(body).first[1]
end