Change triggered by the following update actions:

- [Set Asset Custom Type](ctp:api:type:CategorySetAssetCustomTypeAction) on Categories.
- [Set Asset Custom Type](ctp:api:type:ProductSetAssetCustomTypeAction) on Products.
interface SetAssetCustomTypeChange {
    asset: AssetChangeValue;
    change: string;
    nextValue: CustomFields;
    previousValue: CustomFields;
    type: "SetAssetCustomTypeChange";
}

Properties

Information about the updated Asset.

change: string
nextValue: CustomFields

Value after the change.

previousValue: CustomFields

Value before the change.

type: "SetAssetCustomTypeChange"