This class describes a rule action in the system.
| name | data type | description |
|---|---|---|
| name | string | |
| parameterInfos | array of ParameterInfo |
Example
{
"name" : "...",
"parameterInfos" : [ {
"name" : "...",
"type" : "text",
"regex" : "...",
"mandatory" : true,
"default" : "...",
"choices" : [ "...", "..." ]
}, {
"name" : "...",
"type" : "time",
"regex" : "...",
"mandatory" : true,
"default" : "...",
"choices" : [ "...", "..." ]
} ]
}