Interface CustomerGroupCustomFieldChangedMessagePayload

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

interface CustomerGroupCustomFieldChangedMessagePayload {
    name: string;
    oldValue?: any;
    type: "CustomerGroupCustomFieldChanged";
    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: "CustomerGroupCustomFieldChanged"
value: any

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