Interface MyBusinessUnitSetAddressCustomFieldAction

interface MyBusinessUnitSetAddressCustomFieldAction {
    action: "setAddressCustomField";
    addressId: string;
    name: string;
    value?: any;
}

Properties

action: "setAddressCustomField"
addressId: string

ID of the address to be extended.

name: string

Name of the Custom Field.

value?: any

If value is absent or null, this field will be removed if it exists. Trying to remove a field that does not exist will fail with an InvalidOperation error. If value is provided, it is set for the field defined by name.

Generated using TypeDoc