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