interface UmbDocumentTreeItemModel {
    documentType: {
        collection: null | UmbReferenceByUnique;
        icon: string;
        unique: string;
    };
    entityType: "document";
    hasChildren: boolean;
    icon?: null | string;
    isFolder: boolean;
    isProtected: boolean;
    isTrashed: boolean;
    name: string;
    noAccess: boolean;
    parent: UmbEntityModel;
    unique: string;
    variants: UmbDocumentTreeItemVariantModel[];
}

Hierarchy (view full)

Properties

documentType: {
    collection: null | UmbReferenceByUnique;
    icon: string;
    unique: string;
}
entityType: "document"
hasChildren: boolean
icon?: null | string
isFolder: boolean
isProtected: boolean
isTrashed: boolean
name: string
noAccess: boolean
unique: string
""