Checks if the given value is a Set with a size greater than or equal to minimum.
minimum
// Ensure the set has at least 5 entries.@SetMinSize(5)values: Set<string> Copy
// Ensure the set has at least 5 entries.@SetMinSize(5)values: Set<string>
The minimum allowed size of the set.
Optional
Generic class-validator options.
Checks if the given value is a Set with a size greater than or equal to
minimum
.Example