Generated after a successful Change ShipmentState update action.

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

Properties

oldShipmentState?: string

ShipmentState before the Change Shipment State update action.

shipmentState: string

ShipmentState after the Change Shipment State update action.

type: "OrderShipmentStateChanged"