@@ -269,6 +269,7 @@ public CodegenParameter copy() {
269269 output .isAnyType = this .isAnyType ;
270270 output .isArray = this .isArray ;
271271 output .isMap = this .isMap ;
272+ output .queryIsJsonMimeType = this .queryIsJsonMimeType ;
272273 output .isOptional = this .isOptional ;
273274 output .isExplode = this .isExplode ;
274275 output .style = this .style ;
@@ -293,7 +294,7 @@ public int hashCode() {
293294 isFormStyle , isSpaceDelimited , isPipeDelimited ,
294295 jsonSchema , isString , isNumeric , isInteger , isLong , isNumber , isFloat , isDouble , isDecimal ,
295296 isByteArray , isBinary , isBoolean , isDate , isDateTime , isUuid , isUri , isEmail , isPassword ,
296- isFreeFormObject , isAnyType , isArray , isMap , isOptional , isFile , isEnum , isEnumRef , _enum , allowableValues ,
297+ isFreeFormObject , isAnyType , isArray , isMap , queryIsJsonMimeType , isOptional , isFile , isEnum , isEnumRef , _enum , allowableValues ,
297298 items , mostInnerItems , additionalProperties , vars , requiredVars , vendorExtensions , hasValidation ,
298299 getMaxProperties (), getMinProperties (), isNullable , isDeprecated , required , getMaximum (),
299300 getExclusiveMaximum (), getMinimum (), getExclusiveMinimum (), getMaxLength (), getMinLength (),
@@ -343,6 +344,7 @@ public boolean equals(Object o) {
343344 isAnyType == that .isAnyType &&
344345 isArray == that .isArray &&
345346 isMap == that .isMap &&
347+ queryIsJsonMimeType == that .queryIsJsonMimeType &&
346348 isOptional == that .isOptional &&
347349 isFile == that .isFile &&
348350 isEnum == that .isEnum &&
@@ -483,6 +485,7 @@ public String toString() {
483485 sb .append (", isAnyType=" ).append (isAnyType );
484486 sb .append (", isArray=" ).append (isArray );
485487 sb .append (", isMap=" ).append (isMap );
488+ sb .append (", queryIsJsonMimeType=" ).append (queryIsJsonMimeType );
486489 sb .append (", isOptional=" ).append (isOptional );
487490 sb .append (", isFile=" ).append (isFile );
488491 sb .append (", isEnum=" ).append (isEnum );
0 commit comments