Base model for all other models.

Sections
Methods
A
P
Included Modules
Class Public methods
property_ignored?(property)
# File lib/plaid/models.rb, line 12
def self.property_ignored?(property)
  if defined? @ignored_properties
    @ignored_properties.include?(property)
  else
    false
  end
end
Internal
Instance Public methods
assert_property_exists!(property)

Be strict or forgiving depending on Plaid.relaxed_models value.

# File lib/plaid/models.rb, line 22
def assert_property_exists!(property)
  super unless Plaid.relaxed_models? ||
               self.class.property_ignored?(property)
end