Annotation Type BotCommand
-
@Documented @Retention(SOURCE) @Target(TYPE) public @interface BotCommand
Makes the type eligible to be treated asBotCommand
.There are two steps for converting the annotated type to BotCommand
- Wrapping the annotated type in a class extending BotCommand.
- Generating the package.json file. (This step can be opted out.)
See also :
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description BotCommand.CommandType
commandType
java.lang.String
messageResourceBundle
java.lang.String
packageName
Package of the generated wrapper class.
-
-
-
-
commandType
BotCommand.CommandType commandType
- Default:
- com.automationanywhere.commandsdk.annotations.BotCommand.CommandType.Command
-
-