Checks if the given value is a Set which does not contain any of the forbidden values.
// Ensure the set does not contain the values 'foo' and 'bar'.@SetNotContains(['foo', 'bar'])values: Set<string> Copy
// Ensure the set does not contain the values 'foo' and 'bar'.@SetNotContains(['foo', 'bar'])values: Set<string>
The type of values to check for.
The values forbidden in the given set.
Optional
Generic class-validator options.
Checks if the given value is a Set which does not contain any of the forbidden values.
Example