Change triggered by the following update actions:

- [Remove Payment](ctp:api:type:OrderRemovePaymentAction) on Orders.
- [Remove Payment](ctp:api:type:StagedOrderRemovePaymentAction) on Staged Orders.
interface RemovePaymentChange {
    change: string;
    nextValue: PaymentInfo;
    previousValue: PaymentInfo;
    type: "RemovePaymentChange";
}

Properties

change: string
nextValue: PaymentInfo

Value after the change.

previousValue: PaymentInfo

Value before the change.

type: "RemovePaymentChange"