Interface OrderPaymentStateChangedMessagePayload

Generated after a successful Change Payment State update action.

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

Properties

oldPaymentState?: string

PaymentState before the Change Payment State update action.

paymentState: string

PaymentState after the Change Payment State update action.

type: "OrderPaymentStateChanged"

Generated using TypeDoc