Interface DeliveryCustomFieldRemovedMessagePayload

Generated when a Custom Field has been removed from the Delivery using the Set CustomField update action.

interface DeliveryCustomFieldRemovedMessagePayload {
    deliveryId: string;
    name: string;
    type: "DeliveryCustomFieldRemoved";
}

Properties

Properties

deliveryId: string

Unique identifier of the Delivery.

name: string

Name of the Custom Field that was removed.

type: "DeliveryCustomFieldRemoved"