Class: FortyTwo::Response::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/fortytwo/responses/base.rb

Instance Method Summary collapse

Constructor Details

#initialize(json) ⇒ Base



4
5
6
7
8
9
10
11
# File 'lib/fortytwo/responses/base.rb', line 4

def initialize(json)
  return if json.nil?

  json.each do |key, value|
    key = key.chomp('?') if key.end_with?('?')
    instance_variable_set("@#{key}", value)
  end
end