Change triggered by the following update actions:

- [Set Asset Description](ctp:api:type:CategorySetAssetDescriptionAction) on Categories.
- [Set Asset Description](ctp:api:type:ProductSetAssetDescriptionAction) on Products.
interface SetAssetDescriptionChange {
    asset: AssetChangeValue;
    change: string;
    nextValue: LocalizedString;
    previousValue: LocalizedString;
    type: "SetAssetDescriptionChange";
}

Properties

Information about the updated Asset.

change: string
nextValue: LocalizedString

Value after the change.

previousValue: LocalizedString

Value before the change.

type: "SetAssetDescriptionChange"