Class: ActiveZuora::BooleanField

Inherits:
Field
  • Object
show all
Defined in:
lib/active_zuora/fields/boolean_field.rb

Instance Attribute Summary

Attributes inherited from Field

#default, #name, #namespace, #zuora_name

Instance Method Summary collapse

Methods inherited from Field

#build_xml, #clear_changed_attributes, #define_instance_methods, #initialize

Constructor Details

This class inherits a constructor from ActiveZuora::Field

Instance Method Details

#type_cast(value) ⇒ Object



4
5
6
7
8
9
# File 'lib/active_zuora/fields/boolean_field.rb', line 4

def type_cast(value)
  return value if value.is_a?(TrueClass) || value.is_a?(FalseClass)
  return true if value.to_s.downcase == 'true'
  return false if value.to_s.downcase == 'false'
  default
end