Change triggered by the following update actions:

- [Change Asset Order](ctp:api:type:CategoryChangeAssetOrderAction) on Categories.
- [Change Asset Order](ctp:api:type:ProductChangeAssetOrderAction) on Products.
interface ChangeAssetOrderChange {
    change: string;
    nextValue: LocalizedString[];
    previousValue: LocalizedString[];
    type: "ChangeAssetOrderChange";
}

Properties

change: string
nextValue: LocalizedString[]

Value after the change.

previousValue: LocalizedString[]

Value before the change.

type: "ChangeAssetOrderChange"