Interface OrderPaymentStateChangedMessagePayload

Generated after a successful Change PaymentState update action.

interface OrderPaymentStateChangedMessagePayload {
    oldPaymentState?: PaymentState;
    paymentState: PaymentState;
    type: "OrderPaymentStateChanged";
}

Hierarchy (View Summary)

Properties

oldPaymentState?: PaymentState

PaymentState before the Change Payment State update action.

paymentState: PaymentState

PaymentState after the Change Payment State update action.

type: "OrderPaymentStateChanged"