Category

Table of contents

  1. Description
  2. Properties
  3. @Example

Description

Represents the category of the event.

Properties

Type Available values
string ALERT
string EXCEPTION
string NOTIFICATION

@Example

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

console.log(Category.ALERT); // will print 'ALERT'
console.log(Category.EXCEPTION); // will print 'EXCEPTION'
console.log(Category.NOTIFICATION); // will print 'NOTIFICATION'