@gradientedge/commercetools-utils
    Preparing search index...

    Interface CustomerAddressCustomFieldChangedMessagePayload

    Generated after changing an existing Custom Field on an Address of a Customer using the Set CustomField in Address update action.

    interface CustomerAddressCustomFieldChangedMessagePayload {
        addressId?: string;
        name: string;
        previousValue?: any;
        type: "CustomerAddressCustomFieldChanged";
        value: any;
    }

    Hierarchy (View Summary)

    Index

    Properties

    addressId?: string

    id of the Address of which the Custom Field was changed.

    name: string

    Name of the Custom Field that changed.

    previousValue?: any

    CustomFieldValue based on the FieldType before the Set CustomField update action. When there has not been a Custom Field with the name on the Customer Address before, a Customer Address Custom Field Added Message is generated instead.

    type: "CustomerAddressCustomFieldChanged"
    value: any

    CustomFieldValue based on the FieldType after the Set CustomField update action.