|
22 | 22 | @JsonTypeName("AdditionalPropertiesClass") |
23 | 23 | @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaJAXRSSpecServerCodegen") |
24 | 24 | public class AdditionalPropertiesClass implements Serializable { |
25 | | - private @Valid Map<String, String> mapString = null; |
26 | | - private @Valid Map<String, BigDecimal> mapNumber = null; |
27 | | - private @Valid Map<String, Integer> mapInteger = null; |
28 | | - private @Valid Map<String, Boolean> mapBoolean = null; |
29 | | - private @Valid Map<String, List<Integer>> mapArrayInteger = null; |
30 | | - private @Valid Map<String, List<Object>> mapArrayAnytype = null; |
31 | | - private @Valid Map<String, Map<String, String>> mapMapString = null; |
32 | | - private @Valid Map<String, Map<String, Object>> mapMapAnytype = null; |
| 25 | + private @Valid Map<String, String> mapString = new HashMap<>(); |
| 26 | + private @Valid Map<String, BigDecimal> mapNumber = new HashMap<>(); |
| 27 | + private @Valid Map<String, Integer> mapInteger = new HashMap<>(); |
| 28 | + private @Valid Map<String, Boolean> mapBoolean = new HashMap<>(); |
| 29 | + private @Valid Map<String, List<Integer>> mapArrayInteger = new HashMap<>(); |
| 30 | + private @Valid Map<String, List<Object>> mapArrayAnytype = new HashMap<>(); |
| 31 | + private @Valid Map<String, Map<String, String>> mapMapString = new HashMap<>(); |
| 32 | + private @Valid Map<String, Map<String, Object>> mapMapAnytype = new HashMap<>(); |
33 | 33 | private @Valid Object anytype1; |
34 | 34 | private @Valid Object anytype2; |
35 | 35 | private @Valid Object anytype3; |
|
0 commit comments