Change triggered by the following update actions:

- [Add Asset](ctp:api:type:CategoryAddAssetAction) on Categories.
- [Add Asset](ctp:api:type:ProductAddAssetAction) on Products.
interface AddAssetChange {
    change: string;
    nextValue: Asset;
    previousValue: Asset;
    type: "AddAssetChange";
}

Properties

change: string
nextValue: Asset

Value after the change.

previousValue: Asset

Value before the change.

type: "AddAssetChange"