class AMF::HashWithType
Hash-like object that can store a type string. Used to preserve type information for unmapped objects after deserialization.
Attributes
class_type[R]
Properties
Public Class Methods
new(type)
click to toggle source
Methods
# File lib/amf/common/hash_with_type.rb 16 def initialize(type) 17 @class_type = type 18 end