Arguments
Arguments are activity inputs.
An argument is either a variable or a value. There are two ways you can give input to an activity, you can specify a value directly or you can specify a variable that contains the value.
If an activity has an input that expects a String Argument
, you can either specify a string value in double quotes, e.g. "abc"
or you can specify a String Variable
.
Types of Arguments
String
Input can be either String value or an String Variable
.
Integer
Input can be either an Integer value or an Integer Variable
.
Object
All types of values and variables are permitted as input to an Object Argument.
String values must be specified in double quotes. e.g. "Abcd"
If you enter age
as an input, it will be considered as a variable and the bot will look for a variable with a name age
and if you enter it as "age"
it will be considered as a string value.
Last updated