Interface DeliveryCustomFieldAddedMessagePayload

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

interface DeliveryCustomFieldAddedMessagePayload {
    deliveryId: string;
    name: string;
    type: "DeliveryCustomFieldAdded";
    value: any;
}

Properties

deliveryId: string

Unique identifier of the Delivery.

name: string

Name of the Custom Field that was added.

type: "DeliveryCustomFieldAdded"
value: any

The added CustomFieldValue based on the FieldType.