Change triggered by the following update actions:

- [Set Asset Sources](ctp:api:type:CategorySetAssetSourcesAction) on Categories.
- [Set Asset Sources](ctp:api:type:ProductSetAssetSourcesAction) on Products.
interface SetAssetSourcesChange {
    asset: AssetChangeValue;
    change: string;
    nextValue: AssetSource[];
    previousValue: AssetSource[];
    type: "SetAssetSourcesChange";
}

Properties

Information about the updated Asset.

change: string
nextValue: AssetSource[]

Value after the change.

previousValue: AssetSource[]

Value before the change.

type: "SetAssetSourcesChange"