src/lib/model/custom-action.model.ts
Custom actions representation
Properties |
description |
description:
|
Type : string
|
Actions description |
id |
id:
|
Type : string
|
Unique ID |
isexecutable |
isexecutable:
|
Type : string
|
Flag indicating whether or not the action is executable |
modified |
modified:
|
Type : string
|
ISO Date string of the actions modification date |
modifier |
modifier:
|
Type : string
|
modifiers internal name |
script |
script:
|
Type : string
|
The actions script code |
title |
title:
|
Type : string
|
Actions title |
export interface CustomAction {
/**
* Unique ID
*/
id: string;
/**
* Actions title
*/
title: string;
/**
* Actions description
*/
description: string;
/**
* Flag indicating whether or not the action is executable
*/
isexecutable: string;
/**
* ISO Date string of the actions modification date
*/
modified: string;
/**
* modifiers internal name
*/
modifier: string;
/**
* The actions script code
*/
script: string;
}