Change triggered by the following update actions:

- [Set Purchase Order Number](ctp:api:type:OrderSetPurchaseOrderNumberAction) on Orders.
- [Set Purchase Order Number](ctp:api:type:StagedOrderSetPurchaseOrderNumberAction) on Staged Orders.
interface SetPurchaseOrderNumberChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetPurchaseOrderNumberChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetPurchaseOrderNumberChange"