module T::Props::Serializable::ClassMethods

def from_hash(hash, strict=false) # rubocop:disable Style/OptionalBooleanParameter (changing this API is unfortunately not feasible)

Returns:
  • (Serializable) -
def from_hash(hash, strict=false) # rubocop:disable Style/OptionalBooleanParameter (changing this API is unfortunately not feasible)
  self.decorator.from_hash(hash, strict)
end

def from_hash!(hash)

Returns:
  • (Serializable) -
def from_hash!(hash)
  self.decorator.from_hash(hash, true)
end

def prop_by_serialized_forms; @prop_by_serialized_forms ||= {}; end

def prop_by_serialized_forms; @prop_by_serialized_forms ||= {}; end