Change triggered by the following update actions:

- [Add Payment](ctp:api:type:OrderAddPaymentAction) on Orders.
- [Add Payment](ctp:api:type:StagedOrderAddPaymentAction) on Staged Orders.
interface AddPaymentChange {
    change: string;
    nextValue: PaymentInfo;
    previousValue: PaymentInfo;
    type: "AddPaymentChange";
}

Properties

change: string
nextValue: PaymentInfo

Value after the change.

previousValue: PaymentInfo

Value before the change.

type: "AddPaymentChange"