RuleActionInfo Data Type

This class describes a rule action in the system.

Properties
name data type description
name string
parameterInfos array of ParameterInfo

Example

{
  "name" : "...",
  "parameterInfos" : [ {
    "name" : "...",
    "type" : "text",
    "regex" : "...",
    "mandatory" : true,
    "default" : "...",
    "choices" : [ "...", "..." ]
  }, {
    "name" : "...",
    "type" : "text",
    "regex" : "...",
    "mandatory" : true,
    "default" : "...",
    "choices" : [ "...", "..." ]
  } ]
}