Represents a link that will be assigned to the entry.

interface ILinkToUpdate {
    customProperties?: { [key: string]: string };
    isSource?: boolean;
    linkDefinitionId: number;
    otherEntryId: number;
}

Implemented by

Properties

customProperties?: { [key: string]: string }

Custom properties (key, value pairs) to be added to the link.

isSource?: boolean

Whether the entry is the source for the link. The default value is true.

linkDefinitionId: number

The id of the link definition to be assigned to the entry.

otherEntryId: number

The id of the other entry to be linked to the entry.