@umbraco-cms/backoffice

    Interface UmbClipboardEntryDetailModel<MetaType>

    A Clipboard entry is a composed set of data representing one entry in the clipboard. The entry has enough knowledge for the context of the clipboard to filter away unsupported entries.

    interface UmbClipboardEntryDetailModel<MetaType = object> {
        createDate: null | string;
        entityType: "clipboard-entry";
        icon: null | string;
        meta: MetaType;
        name: null | string;
        unique: string;
        updateDate: null | string;
        values: UmbClipboardEntryValuesType;
    }

    Type Parameters

    • MetaType = object

    Hierarchy

    • UmbClipboardEntryItemModel<MetaType>
      • UmbClipboardEntryDetailModel
    Index

    Properties

    createDate: null | string

    The date the clipboard entry was created.

    entityType: "clipboard-entry"
    icon: null | string

    The icon of the clipboard entry.

    meta: MetaType

    The aliases of the content-types of these entries.

    name: null | string

    The name of this clipboard entry.

    unique: string

    A unique identifier, ensures that this clipboard entry will be replaced if it gets copied later.

    updateDate: null | string

    The date the clipboard entry was last updated.

    The values of the clipboard entry.

    MMNEPVFCICPMFPCPTTAAATR