Interface MissingSerializationType

The MissingSerializationType interface represents a type that could not be found when deserializing the object. This can usually happen when switching between developer and designer mode if a new class has been added.

interface MissingSerializationType {
    $missingClass_data: SerializedObject;
    $missingClass_typeName: string;
    $missingClass_typeNamespace: string;
}

Properties

$missingClass_data: SerializedObject

All data on the object will be placed here. This can be read, as long as the nested objects are not missing types either.

$missingClass_typeName: string

The name of the missing class.

$missingClass_typeNamespace: string

The namespace of the missing class.