Class: ResponseHandler

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ResponseHandler

Returns a new instance of ResponseHandler.



3
4
5
6
# File 'lib/response_handler.rb', line 3

def initialize(response)
  @response = response
  @payload = OpenStruct.new
end

Instance Attribute Details

#payloadObject (readonly)

Returns the value of attribute payload.



8
9
10
# File 'lib/response_handler.rb', line 8

def payload
  @payload
end

#responseObject (readonly)

Returns the value of attribute response.



8
9
10
# File 'lib/response_handler.rb', line 8

def response
  @response
end

Instance Method Details

#parse!Object



10
11
12
13
# File 'lib/response_handler.rb', line 10

def parse!
  parse_data
  success? ? handle_success : handle_error
end