class Avalara::Types::Stash
A Stash
is a ‘suppressing’ Hashie::Trash where keys that are not defined are simply ignored and unavailable to the local object.
A Stash
is useful when you need to read data from another application, but you only want a predefined subset of the returned data to become available, locally.
Private Instance Methods
property_exists?(property)
click to toggle source
# File lib/avalara/types/stash.rb, line 21 def property_exists?(property) self.class.property?(property.to_sym) end