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
Boolean
HasWarnings
Velocity
#set($booleanResponse = $notificationCategory.HasWarnings())
JavaScript
var booleanResponse = notificationCategory.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $notificationCategory.HasWarningsOrErrors())
JavaScript
var booleanResponse = notificationCategory.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$notificationCategory.ThrowErrors()
JavaScript
notificationCategory.ThrowErrors();