Method: TypeformData::ValueClass#marshal_load

Defined in:
lib/typeform_data/value_class.rb

#marshal_load(hash) ⇒ Object



92
93
94
95
96
# File 'lib/typeform_data/value_class.rb', line 92

def marshal_load(hash)
  hash.each do |key, value|
    instance_variable_set("@#{key}", value)
  end
end