Method: ActiveZuora::ObjectField#type_cast

Defined in:
lib/active_zuora/fields/object_field.rb

#type_cast(value) ⇒ Object



14
15
16
17
18
19
# File 'lib/active_zuora/fields/object_field.rb', line 14

def type_cast(value)
  if value.is_a?(Hash)
    value = class_name.constantize.new(value)
  end
  value
end