interface IShortcut {
    creationTime?: Date;
    creator?: string;
    entryType?: EntryType;
    extension?: string;
    fields?: EntryFieldValue[];
    folderPath?: string;
    fullPath?: string;
    id?: number;
    isContainer?: boolean;
    isLeaf?: boolean;
    lastModifiedTime?: Date;
    name?: string;
    parentId?: number;
    rowNumber?: number;
    targetId?: number;
    targetType?: EntryType;
    templateFieldNames?: string[];
    templateId?: number;
    templateName?: string;
    volumeName?: string;
}

Hierarchy (view full)

Implemented by

Properties

creationTime?: Date

The creation time of the entry.

creator?: string

The name of the user that created this entry.

entryType?: EntryType

The type of the entry.

extension?: string

The extension of the shortcut target.

fields?: EntryFieldValue[]

The fields assigned to this entry.

folderPath?: string

The path in the Laserfiche repository to the parent folder.

fullPath?: string

The full path in the Laserfiche repository to the entry.

id?: number

The ID of the entry.

isContainer?: boolean

A boolean indicating if this entry is a container object; it can have other entries as children.

isLeaf?: boolean

A boolean indicating if this entry is a leaf object; it cannot have other entries as children.

lastModifiedTime?: Date

The last modification time of the entry.

name?: string

The name of the entry.

parentId?: number

The ID of the parent entry.

rowNumber?: number

Row number assigned to this entry in the listing.

targetId?: number

The entry ID of the shortcut target.

targetType?: EntryType

The entry type of the shortcut target.

templateFieldNames?: string[]

The names of the fields assigned to the template assigned to this entry.

templateId?: number

The id of the template assigned to this entry.

templateName?: string

The name of the template assigned to this entry.

volumeName?: string

The name of the volume that this entry is associated with.