class RubySol::Values::TypedHash
Hash-like object that can store a type string. Used to preserve type information for unmapped objects after deserialization.
Attributes
type[R]
Public Class Methods
new(type)
click to toggle source
# File lib/ruby_sol/class_mapping.rb 10 def initialize type 11 @type = type 12 end