Change triggered by the Add Delivery update action.

interface AddDeliveryChange {
    change: string;
    nextValue: DeliveryChangeValue;
    previousValue: DeliveryChangeValue;
    type: "AddDeliveryChange";
}

Properties

change: string

Value after the change.

previousValue: DeliveryChangeValue

Value before the change.

type: "AddDeliveryChange"