Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.functions</groupId>
<artifactId>azure-functions-java-library</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
<packaging>jar</packaging>
<parent>
<groupId>com.microsoft.maven</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,19 @@
*
* @return Description of the property
*/
String description();
String description() default "";

/**
* Whether this property is required for tool execution.
*
* @return true if required, false if optional
*/
boolean isRequired();
boolean isRequired() default false;

/**
* Whether this property is an array.
*
* @return true if this property is an array, false otherwise
*/
boolean isArray() default false;
}
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
*
* @return Description of the tool's functionality
*/
String description();
String description() default "";

/**
* JSON array defining expected tool properties.
Expand Down