Method: WscSdk::Schema#transform_value
- Defined in:
- lib/wsc_sdk/schema.rb
#transform_value(attribute, model, value) ⇒ Any
Transforms a value into the appropriate type.
109 110 111 112 |
# File 'lib/wsc_sdk/schema.rb', line 109 def transform_value(attribute, model, value) return nil unless has_attribute?(attribute) self[attribute].transform_value(model, value) end |