Interface CustomerAddressCustomFieldRemovedMessagePayload

Generated after removing a Custom Field from an Address of a Customer using the Set CustomField in Address update action.

interface CustomerAddressCustomFieldRemovedMessagePayload {
    addressId?: string;
    name: string;
    type: "CustomerAddressCustomFieldRemoved";
}

Properties

Properties

addressId?: string

id of the Address from which the Custom Field was removed.

name: string

Name of the Custom Field that was removed.

type: "CustomerAddressCustomFieldRemoved"