Interface BusinessUnitAddressCustomFieldChangedMessagePayload

Generated after changing an existing Custom Field on an address of a Business Unit using the Set Address CustomField update action.

interface BusinessUnitAddressCustomFieldChangedMessagePayload {
    name: string;
    oldValue?: any;
    type: "BusinessUnitAddressCustomFieldChanged";
    value: any;
}

Properties

name: string

Name of the Custom Field that changed.

oldValue?: any

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

type: "BusinessUnitAddressCustomFieldChanged"
value: any

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