@@ -34,7 +34,7 @@ public class CodegenParameter implements IJsonSchemaValidationProperties {
34
34
public String example ; // example value (x-example)
35
35
public String jsonSchema ;
36
36
public boolean isString , isNumeric , isInteger , isLong , isNumber , isFloat , isDouble , isByteArray , isBinary ,
37
- isBoolean , isDate , isDateTime , isUuid , isUri , isEmail , isFreeFormObject ;
37
+ isBoolean , isDate , isDateTime , isUuid , isUri , isEmail , isFreeFormObject , isAnyType ;
38
38
public boolean isListContainer , isMapContainer ;
39
39
public boolean isFile ;
40
40
public boolean isEnum ;
@@ -178,6 +178,7 @@ public CodegenParameter copy() {
178
178
output .isUri = this .isUri ;
179
179
output .isEmail = this .isEmail ;
180
180
output .isFreeFormObject = this .isFreeFormObject ;
181
+ output .isAnyType = this .isAnyType ;
181
182
output .isListContainer = this .isListContainer ;
182
183
output .isMapContainer = this .isMapContainer ;
183
184
output .isExplode = this .isExplode ;
@@ -188,7 +189,7 @@ public CodegenParameter copy() {
188
189
189
190
@ Override
190
191
public int hashCode () {
191
- return Objects .hash (isFormParam , isQueryParam , isPathParam , isHeaderParam , isCookieParam , isBodyParam , hasMore , isContainer , secondaryParam , isCollectionFormatMulti , isPrimitiveType , isModel , isExplode , baseName , paramName , dataType , datatypeWithEnum , dataFormat , collectionFormat , description , unescapedDescription , baseType , defaultValue , enumName , style , example , jsonSchema , isString , isNumeric , isInteger , isLong , isNumber , isFloat , isDouble , isByteArray , isBinary , isBoolean , isDate , isDateTime , isUuid , isUri , isEmail , isFreeFormObject , isListContainer , isMapContainer , isFile , isEnum , _enum , allowableValues , items , mostInnerItems , vendorExtensions , hasValidation , getMaxProperties (), getMinProperties (), isNullable , required , getMaximum (), getExclusiveMaximum (), getMinimum (), getExclusiveMinimum (), getMaxLength (), getMinLength (), getPattern (), getMaxItems (), getMinItems (), getUniqueItems (), multipleOf );
192
+ return Objects .hash (isFormParam , isQueryParam , isPathParam , isHeaderParam , isCookieParam , isBodyParam , hasMore , isContainer , secondaryParam , isCollectionFormatMulti , isPrimitiveType , isModel , isExplode , baseName , paramName , dataType , datatypeWithEnum , dataFormat , collectionFormat , description , unescapedDescription , baseType , defaultValue , enumName , style , example , jsonSchema , isString , isNumeric , isInteger , isLong , isNumber , isFloat , isDouble , isByteArray , isBinary , isBoolean , isDate , isDateTime , isUuid , isUri , isEmail , isFreeFormObject , isAnyType , isListContainer , isMapContainer , isFile , isEnum , _enum , allowableValues , items , mostInnerItems , vendorExtensions , hasValidation , getMaxProperties (), getMinProperties (), isNullable , required , getMaximum (), getExclusiveMaximum (), getMinimum (), getExclusiveMinimum (), getMaxLength (), getMinLength (), getPattern (), getMaxItems (), getMinItems (), getUniqueItems (), multipleOf );
192
193
}
193
194
194
195
@ Override
@@ -225,6 +226,7 @@ public boolean equals(Object o) {
225
226
isUri == that .isUri &&
226
227
isEmail == that .isEmail &&
227
228
isFreeFormObject == that .isFreeFormObject &&
229
+ isAnyType == that .isAnyType &&
228
230
isListContainer == that .isListContainer &&
229
231
isMapContainer == that .isMapContainer &&
230
232
isFile == that .isFile &&
@@ -312,6 +314,7 @@ public String toString() {
312
314
sb .append (", isUri=" ).append (isUri );
313
315
sb .append (", isEmail=" ).append (isEmail );
314
316
sb .append (", isFreeFormObject=" ).append (isFreeFormObject );
317
+ sb .append (", isAnyType=" ).append (isAnyType );
315
318
sb .append (", isListContainer=" ).append (isListContainer );
316
319
sb .append (", isMapContainer=" ).append (isMapContainer );
317
320
sb .append (", isFile=" ).append (isFile );
0 commit comments