Interface DeliveryCustomTypeRemovedMessagePayload

Generated after removing a Custom Type from a Delivery using the Set Custom Type update action with empty parameters.

interface DeliveryCustomTypeRemovedMessagePayload {
    deliveryId: string;
    previousTypeId?: string;
    type: "DeliveryCustomTypeRemoved";
}

Properties

deliveryId: string

Unique identifier of the Delivery.

previousTypeId?: string

id of the Custom Type that was removed. Absent if there was no previous Custom Type present.

type: "DeliveryCustomTypeRemoved"