Using the values from attribute_keys set attribute processors, with allow and deny list
e.g.
* @example <caption>drops all attributes with top-level keys except for 'myAttr' and 'myOtherAttr'</caption>
* attributesProcessors: [createAllowListProcessor(['myAttr', 'myOtherAttr'])]
* @example <caption>drops all attributes</caption>
* attributesProcessors: [createAllowListProcessor([])]
* @example <caption>allows all attributes except for 'myAttr'</caption>
* attributesProcessors: [createDenyListProcessor(['myAttr']]
*/
attributesProcessors?: IAttributesProcessor[];
Using the values from
attribute_keysset attribute processors, with allow and deny liste.g.