Change triggered by the following update actions:

- [Change Asset Name](ctp:api:type:CategoryChangeAssetNameAction) on Categories.
- [Change Asset Name](ctp:api:type:ProductChangeAssetNameAction) on Products.
interface ChangeAssetNameChange {
    asset: AssetChangeValue;
    change: string;
    nextValue: LocalizedString;
    previousValue: LocalizedString;
    type: "ChangeAssetNameChange";
}

Properties

Information about the updated Asset.

change: string
nextValue: LocalizedString

Value after the change.

previousValue: LocalizedString

Value before the change.

type: "ChangeAssetNameChange"