persistent class %Compiler.Informix.ImportedObject
extends %Persistent
property Class
as %Dictionary.ClassDefinition;
property ObjectID
as %String(MAXLEN=255);
property ObjectName
as %String(MAXLEN=255);
property ObjectSchema
as %String(MAXLEN=255);
property ObjectSchemaID
as %String(MAXLEN=255);
property ObjectType
as %String(DISPLAYLIST=",Table,View,Routine",VALUELIST=",T,V,R");
property SourceFile
as %String(MAXLEN="");
index (IDK on ObjectType,ObjectSchemaID,ObjectID) [IdKey];