ActionTemplate
[ Interface ]
export interface ActionTemplate extends baseAction {
objectType: 'ActionTemplate';
templateName: string;
description: string;
fnParams: IFunction.Value[];
}
Extends baseAction
Defines an action of type ActionTemplate.
An action that is used to call a specific ActionTemplate.
Properties
Name | Type | Description |
---|---|---|
active [ optional ] | Defines whether the action is active or inactive. | |
collapsed [ optional ] | Defines whether the action is collapsed or expanded in the Actions & Conditions Editor. | |
asyncWait | Defines whether or not asynchronous actions should wait until the end of the action is signaled before the following action is executed. | |
success | Action[] | A list of actions to be performed in case of success. |
error | Action[] | A list of actions to be performed in case of an error. |
objectType | 'ActionTemplate' | Defines the relevant parser. |
templateName | The name of the action template. | |
description | A description of the action template. | |
fnParams | A list of parameters to be transferred to the action template when it is called. |
Available from version 1.12 |