File

src/lib/model/custom-action.model.ts

Description

Custom actions representation

Index

Properties

Properties

description
description: string
Type : string

Actions description

id
id: string
Type : string

Unique ID

isexecutable
isexecutable: string
Type : string

Flag indicating whether or not the action is executable

modified
modified: string
Type : string

ISO Date string of the actions modification date

modifier
modifier: string
Type : string

modifiers internal name

script
script: string
Type : string

The actions script code

title
title: string
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;
}

results matching ""

    No results matching ""