interface UmbDocumentCollectionItemModel {
    contentTypeAlias: string;
    createDate: Date;
    creator?: null | string;
    documentType: { alias: string; icon: string; unique: string };
    entityType: "document";
    icon: string;
    isProtected: boolean;
    isTrashed: boolean;
    name: string;
    sortOrder: number;
    state: string;
    unique: string;
    updateDate: Date;
    updater?: null | string;
    values: { alias: string; value: string }[];
    variants: UmbDocumentItemVariantModel[];
}

Properties

contentTypeAlias: string

From 15.3.0. Will be removed in 17.0.0. Use alias on documentType instead.

createDate: Date

From 15.3.0. Will be removed in 17.0.0. Use createDate in variants array instead.

creator?: null | string
documentType: { alias: string; icon: string; unique: string }
entityType: "document"
icon: string

From 15.3.0. Will be removed in 17.0.0. Use icon on documentType instead.

isProtected: boolean
isTrashed: boolean
name: string

From 15.3.0. Will be removed in 17.0.0. Use name in variants array instead.

sortOrder: number
state: string

From 15.3.0. Will be removed in 17.0.0. Use state in variants array instead.

unique: string
updateDate: Date

From 15.3.0. Will be removed in 17.0.0. Use updateDate in variants array instead.

updater?: null | string
values: { alias: string; value: string }[]
MMNEPVFCICPMFPCPTTAAATR