Interface OrderShipmentStateChangedMessagePayload

Generated after a successful Change ShipmentState update action.

interface OrderShipmentStateChangedMessagePayload {
    oldShipmentState?: ShipmentState;
    shipmentState: ShipmentState;
    type: "OrderShipmentStateChanged";
}

Hierarchy (View Summary)

Properties

oldShipmentState?: ShipmentState

ShipmentState before the Change Shipment State update action.

shipmentState: ShipmentState

ShipmentState after the Change Shipment State update action.

type: "OrderShipmentStateChanged"