31
31
public class CodegenParameter implements IJsonSchemaValidationProperties {
32
32
public boolean isFormParam , isQueryParam , isPathParam , isHeaderParam ,
33
33
isCookieParam , isBodyParam , isContainer ,
34
- isCollectionFormatMulti , isPrimitiveType , isModel , isExplode , isDeepObject , isMatrix , isAllowEmptyValue ;
34
+ isCollectionFormatMulti , isPrimitiveType , isModel , isExplode , isDeepObject , isMatrix , isAllowEmptyValue ,
35
+ isFormStyle , isSpaceDelimited , isPipeDelimited ;
35
36
public String baseName , paramName , dataType , datatypeWithEnum , dataFormat , contentType ,
36
37
collectionFormat , description , unescapedDescription , baseType , defaultValue , enumDefaultValue , enumName , style ;
37
38
@@ -268,6 +269,9 @@ public CodegenParameter copy() {
268
269
output .isExplode = this .isExplode ;
269
270
output .style = this .style ;
270
271
output .isDeepObject = this .isDeepObject ;
272
+ output .isFormStyle = this .isFormStyle ;
273
+ output .isSpaceDelimited = this .isSpaceDelimited ;
274
+ output .isPipeDelimited = this .isPipeDelimited ;
271
275
output .isMatrix = this .isMatrix ;
272
276
output .isAllowEmptyValue = this .isAllowEmptyValue ;
273
277
output .contentType = this .contentType ;
@@ -282,6 +286,7 @@ public int hashCode() {
282
286
paramName , dataType , datatypeWithEnum , dataFormat , collectionFormat , description ,
283
287
unescapedDescription , baseType , containerType , containerTypeMapped , defaultValue ,
284
288
enumDefaultValue , enumName , style , isDeepObject , isMatrix , isAllowEmptyValue , example , examples ,
289
+ isFormStyle , isSpaceDelimited , isPipeDelimited ,
285
290
jsonSchema , isString , isNumeric , isInteger , isLong , isNumber , isFloat , isDouble , isDecimal ,
286
291
isByteArray , isBinary , isBoolean , isDate , isDateTime , isUuid , isUri , isEmail , isPassword ,
287
292
isFreeFormObject , isAnyType , isArray , isMap , isOptional , isFile , isEnum , isEnumRef , _enum , allowableValues ,
@@ -375,6 +380,9 @@ public boolean equals(Object o) {
375
380
Objects .equals (enumName , that .enumName ) &&
376
381
Objects .equals (style , that .style ) &&
377
382
Objects .equals (isDeepObject , that .isDeepObject ) &&
383
+ Objects .equals (isFormStyle , that .isFormStyle ) &&
384
+ Objects .equals (isSpaceDelimited , that .isSpaceDelimited ) &&
385
+ Objects .equals (isPipeDelimited , that .isPipeDelimited ) &&
378
386
Objects .equals (isMatrix , that .isMatrix ) &&
379
387
Objects .equals (isAllowEmptyValue , that .isAllowEmptyValue ) &&
380
388
Objects .equals (example , that .example ) &&
@@ -440,6 +448,9 @@ public String toString() {
440
448
sb .append (", enumName='" ).append (enumName ).append ('\'' );
441
449
sb .append (", style='" ).append (style ).append ('\'' );
442
450
sb .append (", deepObject='" ).append (isDeepObject ).append ('\'' );
451
+ sb .append (", isFormStyle='" ).append (isFormStyle ).append ('\'' );
452
+ sb .append (", isSpaceDelimited='" ).append (isSpaceDelimited ).append ('\'' );
453
+ sb .append (", isPipeDelimited='" ).append (isPipeDelimited ).append ('\'' );
443
454
sb .append (", isMatrix='" ).append (isMatrix ).append ('\'' );
444
455
sb .append (", allowEmptyValue='" ).append (isAllowEmptyValue ).append ('\'' );
445
456
sb .append (", example='" ).append (example ).append ('\'' );
0 commit comments