Skip to content

Commit

Permalink
Add known types for the engine rest variable type
Browse files Browse the repository at this point in the history
  • Loading branch information
filiphr committed Nov 23, 2023
1 parent 7b544e4 commit fef9471
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void setName(String name) {
this.name = name;
}

@ApiModelProperty(example = "string", value = "Type of the variable.", notes = " When writing a variable and this value is omitted, the type will be deducted from the raw JSON-attribute request type and is limited to either string, double, integer and boolean. It’s advised to always include a type to make sure no wrong assumption about the type can be done.")
@ApiModelProperty(example = "string", value = "Type of the variable.", notes = "When writing a variable and this value is omitted, the type will be deducted from the raw JSON-attribute request type and is limited to either string, double, integer and boolean. It’s advised to always include a type to make sure no wrong assumption about the type can be done. Some known types are: string, integer, long, short, double, instant, date, localDate, localDateTime, boolean, json")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getType() {
return type;
Expand Down

0 comments on commit fef9471

Please sign in to comment.