Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Errors | Read | IList of Error | Errors |
| Id | Read | Guid | Id |
| Name | Read | String | Name |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $notificationCategory.HasErrors())
JavaScript
var booleanResponse = notificationCategory.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $notificationCategory.HasWarnings())
JavaScript
var booleanResponse = notificationCategory.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $notificationCategory.HasWarningsOrErrors())
JavaScript
var booleanResponse = notificationCategory.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$notificationCategory.ThrowErrors()
JavaScript
notificationCategory.ThrowErrors();