26
26
*/
27
27
public class CodegenParameter implements IJsonSchemaValidationProperties {
28
28
public boolean isFormParam , isQueryParam , isPathParam , isHeaderParam ,
29
- isCookieParam , isBodyParam , hasMore , isContainer ,
30
- secondaryParam , isCollectionFormatMulti , isPrimitiveType , isModel , isExplode ;
29
+ isCookieParam , isBodyParam , isContainer ,
30
+ isCollectionFormatMulti , isPrimitiveType , isModel , isExplode ;
31
31
public String baseName , paramName , dataType , datatypeWithEnum , dataFormat , contentType ,
32
32
collectionFormat , description , unescapedDescription , baseType , defaultValue , enumName , style ;
33
33
@@ -105,9 +105,7 @@ public class CodegenParameter implements IJsonSchemaValidationProperties {
105
105
public CodegenParameter copy () {
106
106
CodegenParameter output = new CodegenParameter ();
107
107
output .isFile = this .isFile ;
108
- output .hasMore = this .hasMore ;
109
108
output .isContainer = this .isContainer ;
110
- output .secondaryParam = this .secondaryParam ;
111
109
output .baseName = this .baseName ;
112
110
output .paramName = this .paramName ;
113
111
output .dataType = this .dataType ;
@@ -202,7 +200,7 @@ public CodegenParameter copy() {
202
200
203
201
@ Override
204
202
public int hashCode () {
205
- 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 , isDecimal , isByteArray , isBinary , isBoolean , isDate , isDateTime , isUuid , isUri , isEmail , isFreeFormObject , isAnyType , isArray , isMap , isFile , isEnum , _enum , allowableValues , items , mostInnerItems , additionalProperties , vars , requiredVars , vendorExtensions , hasValidation , getMaxProperties (), getMinProperties (), isNullable , required , getMaximum (), getExclusiveMaximum (), getMinimum (), getExclusiveMinimum (), getMaxLength (), getMinLength (), getPattern (), getMaxItems (), getMinItems (), getUniqueItems (), contentType , multipleOf );
203
+ return Objects .hash (isFormParam , isQueryParam , isPathParam , isHeaderParam , isCookieParam , isBodyParam , isContainer , 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 , isDecimal , isByteArray , isBinary , isBoolean , isDate , isDateTime , isUuid , isUri , isEmail , isFreeFormObject , isAnyType , isArray , isMap , isFile , isEnum , _enum , allowableValues , items , mostInnerItems , additionalProperties , vars , requiredVars , vendorExtensions , hasValidation , getMaxProperties (), getMinProperties (), isNullable , required , getMaximum (), getExclusiveMaximum (), getMinimum (), getExclusiveMinimum (), getMaxLength (), getMinLength (), getPattern (), getMaxItems (), getMinItems (), getUniqueItems (), contentType , multipleOf );
206
204
}
207
205
208
206
@ Override
@@ -216,9 +214,7 @@ public boolean equals(Object o) {
216
214
isHeaderParam == that .isHeaderParam &&
217
215
isCookieParam == that .isCookieParam &&
218
216
isBodyParam == that .isBodyParam &&
219
- hasMore == that .hasMore &&
220
217
isContainer == that .isContainer &&
221
- secondaryParam == that .secondaryParam &&
222
218
isCollectionFormatMulti == that .isCollectionFormatMulti &&
223
219
isPrimitiveType == that .isPrimitiveType &&
224
220
isModel == that .isModel &&
@@ -295,9 +291,7 @@ public String toString() {
295
291
sb .append (", isHeaderParam=" ).append (isHeaderParam );
296
292
sb .append (", isCookieParam=" ).append (isCookieParam );
297
293
sb .append (", isBodyParam=" ).append (isBodyParam );
298
- sb .append (", hasMore=" ).append (hasMore );
299
294
sb .append (", isContainer=" ).append (isContainer );
300
- sb .append (", secondaryParam=" ).append (secondaryParam );
301
295
sb .append (", isCollectionFormatMulti=" ).append (isCollectionFormatMulti );
302
296
sb .append (", isPrimitiveType=" ).append (isPrimitiveType );
303
297
sb .append (", isModel=" ).append (isModel );
0 commit comments