3131public class CodegenParameter implements IJsonSchemaValidationProperties {
3232 public boolean isFormParam , isQueryParam , isPathParam , isHeaderParam ,
3333 isCookieParam , isBodyParam , isContainer ,
34- isCollectionFormatMulti , isPrimitiveType , isModel , isExplode , isDeepObject , isMatrix , isAllowEmptyValue ;
34+ isCollectionFormatMulti , isPrimitiveType , isModel , isExplode , isDeepObject , isMatrix , isAllowEmptyValue ,
35+ isFormStyle , isSpaceDelimited , isPipeDelimited ;
3536 public String baseName , paramName , dataType , datatypeWithEnum , dataFormat , contentType ,
3637 collectionFormat , description , unescapedDescription , baseType , defaultValue , enumDefaultValue , enumName , style ;
3738
@@ -268,6 +269,9 @@ public CodegenParameter copy() {
268269 output .isExplode = this .isExplode ;
269270 output .style = this .style ;
270271 output .isDeepObject = this .isDeepObject ;
272+ output .isFormStyle = this .isFormStyle ;
273+ output .isSpaceDelimited = this .isSpaceDelimited ;
274+ output .isPipeDelimited = this .isPipeDelimited ;
271275 output .isMatrix = this .isMatrix ;
272276 output .isAllowEmptyValue = this .isAllowEmptyValue ;
273277 output .contentType = this .contentType ;
@@ -282,6 +286,7 @@ public int hashCode() {
282286 paramName , dataType , datatypeWithEnum , dataFormat , collectionFormat , description ,
283287 unescapedDescription , baseType , containerType , containerTypeMapped , defaultValue ,
284288 enumDefaultValue , enumName , style , isDeepObject , isMatrix , isAllowEmptyValue , example , examples ,
289+ isFormStyle , isSpaceDelimited , isPipeDelimited ,
285290 jsonSchema , isString , isNumeric , isInteger , isLong , isNumber , isFloat , isDouble , isDecimal ,
286291 isByteArray , isBinary , isBoolean , isDate , isDateTime , isUuid , isUri , isEmail , isPassword ,
287292 isFreeFormObject , isAnyType , isArray , isMap , isOptional , isFile , isEnum , isEnumRef , _enum , allowableValues ,
@@ -375,6 +380,9 @@ public boolean equals(Object o) {
375380 Objects .equals (enumName , that .enumName ) &&
376381 Objects .equals (style , that .style ) &&
377382 Objects .equals (isDeepObject , that .isDeepObject ) &&
383+ Objects .equals (isFormStyle , that .isFormStyle ) &&
384+ Objects .equals (isSpaceDelimited , that .isSpaceDelimited ) &&
385+ Objects .equals (isPipeDelimited , that .isPipeDelimited ) &&
378386 Objects .equals (isMatrix , that .isMatrix ) &&
379387 Objects .equals (isAllowEmptyValue , that .isAllowEmptyValue ) &&
380388 Objects .equals (example , that .example ) &&
@@ -440,6 +448,9 @@ public String toString() {
440448 sb .append (", enumName='" ).append (enumName ).append ('\'' );
441449 sb .append (", style='" ).append (style ).append ('\'' );
442450 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 ('\'' );
443454 sb .append (", isMatrix='" ).append (isMatrix ).append ('\'' );
444455 sb .append (", allowEmptyValue='" ).append (isAllowEmptyValue ).append ('\'' );
445456 sb .append (", example='" ).append (example ).append ('\'' );
0 commit comments