Details of an item associated with the changed record.

interface AssociatedItem {
    id?: string;
    name?: string;
    parentId?: string;
    parentName?: string;
    typeName?: string;
}

Properties

id?: string

The ID of the associated record.

name?: string

The name of the associated record.

parentId?: string

The ID of the associated parent record.

parentName?: string

The name of the associated parent record.

typeName?: string

The type of the associated record.