EntityType

Table of contents

  1. Description
  2. Properties
  3. @Example

Description

EntityType is an enum which helps deduce what type of entity you are trying to manage.

Properties

Type Available values
string ACTION
string CONDITION
string SUBSCRIPTION

@Example

import { EntityType } from '@sap_oss/alert-notification-client';

console.log(EntityType.ACTION); // will print 'ACTION'
console.log(EntityType.CONDITION); // will print 'CONDITION'
console.log(EntityType.SUBSCRIPTION); // will print 'SUBSCRIPTION'