Generated after adding a Custom Type to a Delivery using the Set Custom Type update action.

interface DeliveryCustomTypeSetMessagePayload {
    customFields: CustomFields;
    deliveryId: string;
    previousTypeId?: string;
    type: "DeliveryCustomTypeSet";
}

Properties

customFields: CustomFields

The Custom Fields that have been set.

deliveryId: string

Unique identifier of the Delivery.

previousTypeId?: string

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

type: "DeliveryCustomTypeSet"