module T::Props::Serializable::ClassMethods

def from_hash(hash, strict=false)

Returns:
  • (Serializable) -
def from_hash(hash, strict=false)
  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

def prop_by_serialized_forms
  @prop_by_serialized_forms ||= {}
end