Represents an entry link definition.

interface ILinkDefinition {
    description?: string;
    id?: number;
    sourceLabel?: string;
    targetLabel?: string;
}

Implemented by

Properties

description?: string

The description of the link definition.

id?: number

The ID of the link definition.

sourceLabel?: string

The label for the source entry in the link definition.

targetLabel?: string

The label for the target entry in the link definition.