LuaConditionalRoutingRule:new
The constructor for a LuaConditionalRoutingRule
object (creates a new LuaConditionalRoutingRule
object). A LuaConditionalRoutingRule
object is a conditional routing that maps some user input to a destination task.
Syntax
new(input_text, task_ID)
Arguments
Argument | Description |
---|---|
input_text
|
(string) The user text. This argument is required. |
task_ID
|
(strings) The ID of the task that this conditional routing rule directs to. This argument is required. |
Example
local rule = LuaConditionalRoutingRule:new("not sure" , "MORE_INFO_TASK")