Skip to content

Commit

Permalink
docs: Optional properties
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-geller committed Feb 5, 2025
1 parent 0046c2c commit 80d7ba4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions content/docs/plugin-developer-guide/02.task.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ public class ReverseString extends Task implements RunnableTask<ReverseString.Ou
```
::

Let's look at this one more deeply:
::alert{type="info"}
Note that all optional properties will be displayed within the "Optional properties" section in the No-Code Editor in the Kestra UI.
::

Let's look at this one more deeply.

### Class annotations
```java
Expand All @@ -59,7 +63,7 @@ Let's look at this one more deeply:
@Getter
@NoArgsConstructor
```
These annotations required to make your plugin work with Kestra. They are [Lombok](https://projectlombok.org/) annotations and allow Kestra and its internal serialization to work properly.
These annotations require to make your plugin work with Kestra. They are [Lombok](https://projectlombok.org/) annotations and allow Kestra and its internal serialization to work properly.


### Class declaration
Expand Down

0 comments on commit 80d7ba4

Please sign in to comment.