Change triggered by the following update actions:

- [Set Asset CustomField](ctp:api:type:CategorySetAssetCustomFieldAction) on Categories.
- [Set Asset CustomField](ctp:api:type:ProductSetAssetCustomFieldAction) on Products.
interface SetAssetCustomFieldChange {
    asset: AssetChangeValue;
    change: string;
    customTypeId: string;
    name: string;
    nextValue: any;
    previousValue: any;
    type: "SetAssetCustomFieldChange";
}

Properties

Information about the updated Asset.

change: string
customTypeId: string

id of the referenced Type.

name: string

Name of the Custom Field.

nextValue: any

Value after the change.

previousValue: any

Value before the change.

type: "SetAssetCustomFieldChange"