5252 CalculatedFieldInfo .JSON_PROPERTY_CONFIGURATION_VERSION ,
5353 CalculatedFieldInfo .JSON_PROPERTY_CONFIGURATION ,
5454 CalculatedFieldInfo .JSON_PROPERTY_VERSION ,
55+ CalculatedFieldInfo .JSON_PROPERTY_ADDITIONAL_INFO ,
5556 CalculatedFieldInfo .JSON_PROPERTY_ENTITY_NAME
5657})
5758@ javax .annotation .Generated (value = "org.openapitools.codegen.languages.JavaClientCodegen" , comments = "Generator version: 7.20.0" )
@@ -100,6 +101,10 @@ public class CalculatedFieldInfo {
100101 @ javax .annotation .Nullable
101102 private Long version ;
102103
104+ public static final String JSON_PROPERTY_ADDITIONAL_INFO = "additionalInfo" ;
105+ @ javax .annotation .Nullable
106+ private com .fasterxml .jackson .databind .JsonNode additionalInfo ;
107+
103108 public static final String JSON_PROPERTY_ENTITY_NAME = "entityName" ;
104109 @ javax .annotation .Nullable
105110 private String entityName ;
@@ -371,6 +376,30 @@ public void setVersion(@javax.annotation.Nullable Long version) {
371376 }
372377
373378
379+ public CalculatedFieldInfo additionalInfo (@ javax .annotation .Nullable com .fasterxml .jackson .databind .JsonNode additionalInfo ) {
380+ this .additionalInfo = additionalInfo ;
381+ return this ;
382+ }
383+
384+ /**
385+ * Additional parameters of the calculated field
386+ * @return additionalInfo
387+ */
388+ @ javax .annotation .Nullable
389+ @ JsonProperty (value = JSON_PROPERTY_ADDITIONAL_INFO , required = false )
390+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
391+ public com .fasterxml .jackson .databind .JsonNode getAdditionalInfo () {
392+ return additionalInfo ;
393+ }
394+
395+
396+ @ JsonProperty (value = JSON_PROPERTY_ADDITIONAL_INFO , required = false )
397+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
398+ public void setAdditionalInfo (@ javax .annotation .Nullable com .fasterxml .jackson .databind .JsonNode additionalInfo ) {
399+ this .additionalInfo = additionalInfo ;
400+ }
401+
402+
374403 public CalculatedFieldInfo entityName (@ javax .annotation .Nullable String entityName ) {
375404 this .entityName = entityName ;
376405 return this ;
@@ -418,12 +447,13 @@ public boolean equals(Object o) {
418447 Objects .equals (this .configurationVersion , calculatedFieldInfo .configurationVersion ) &&
419448 Objects .equals (this ._configuration , calculatedFieldInfo ._configuration ) &&
420449 Objects .equals (this .version , calculatedFieldInfo .version ) &&
450+ Objects .equals (this .additionalInfo , calculatedFieldInfo .additionalInfo ) &&
421451 Objects .equals (this .entityName , calculatedFieldInfo .entityName );
422452 }
423453
424454 @ Override
425455 public int hashCode () {
426- return Objects .hash (id , createdTime , tenantId , entityId , type , name , debugMode , debugSettings , configurationVersion , _configuration , version , entityName );
456+ return Objects .hash (id , createdTime , tenantId , entityId , type , name , debugMode , debugSettings , configurationVersion , _configuration , version , additionalInfo , entityName );
427457 }
428458
429459 @ Override
@@ -441,6 +471,7 @@ public String toString() {
441471 sb .append (" configurationVersion: " ).append (toIndentedString (configurationVersion )).append ("\n " );
442472 sb .append (" _configuration: " ).append (toIndentedString (_configuration )).append ("\n " );
443473 sb .append (" version: " ).append (toIndentedString (version )).append ("\n " );
474+ sb .append (" additionalInfo: " ).append (toIndentedString (additionalInfo )).append ("\n " );
444475 sb .append (" entityName: " ).append (toIndentedString (entityName )).append ("\n " );
445476 sb .append ("}" );
446477 return sb .toString ();
@@ -544,6 +575,11 @@ public String toUrlQueryString(String prefix) {
544575 joiner .add (String .format (java .util .Locale .ROOT , "%sversion%s=%s" , prefix , suffix , ApiClient .urlEncode (ApiClient .valueToString (getVersion ()))));
545576 }
546577
578+ // add `additionalInfo` to the URL query string
579+ if (getAdditionalInfo () != null ) {
580+ joiner .add (String .format (java .util .Locale .ROOT , "%sadditionalInfo%s=%s" , prefix , suffix , ApiClient .urlEncode (ApiClient .valueToString (getAdditionalInfo ()))));
581+ }
582+
547583 // add `entityName` to the URL query string
548584 if (getEntityName () != null ) {
549585 joiner .add (String .format (java .util .Locale .ROOT , "%sentityName%s=%s" , prefix , suffix , ApiClient .urlEncode (ApiClient .valueToString (getEntityName ()))));
0 commit comments