File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
src/main/java/com/microsoft/azure/functions/annotation Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 44 <modelVersion >4.0.0</modelVersion >
55 <groupId >com.microsoft.azure.functions</groupId >
66 <artifactId >azure-functions-java-library</artifactId >
7- <version >3.2.1 </version >
7+ <version >3.2.2 </version >
88 <packaging >jar</packaging >
99 <parent >
1010 <groupId >com.microsoft.maven</groupId >
Original file line number Diff line number Diff line change 6161 *
6262 * @return Description of the property
6363 */
64- String description ();
64+ String description () default "" ;
6565
6666 /**
6767 * Whether this property is required for tool execution.
6868 *
6969 * @return true if required, false if optional
7070 */
71- boolean isRequired ();
71+ boolean isRequired () default false ;
72+
73+ /**
74+ * Whether this property is an array.
75+ *
76+ * @return true if this property is an array, false otherwise
77+ */
78+ boolean isArray () default false ;
7279}
Original file line number Diff line number Diff line change 6464 *
6565 * @return Description of the tool's functionality
6666 */
67- String description ();
67+ String description () default "" ;
6868
6969 /**
7070 * JSON array defining expected tool properties.
You can’t perform that action at this time.
0 commit comments