Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Errors | Read | IList of Error | Errors |
| FirstOccurredDate | Read | DateTime | First Occurred Date |
| GroupId | Read | Nullable of Int32 | Group Id |
| GroupingKey | Read | String | Grouping Key |
| Id | Read | Int32 | Id |
| IsResolvable | Read | Boolean | Is Resolvable |
| IsResolved | Read, Write | Boolean | Is Resolved |
| LastOccurredDate | Read | DateTime | Last Occurred Date |
| Message | Read | String | Message |
| PluginType | Read | String | Plugin Type |
| RecipientIds | Read | IList of Int32 | Recipient Ids |
| Subject | Read | String | Subject |
| TotalOccurrences | Read | Int32 | Total Occurrences |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $systemNotification.HasErrors())
JavaScript
var booleanResponse = systemNotification.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $systemNotification.HasWarnings())
JavaScript
var booleanResponse = systemNotification.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $systemNotification.HasWarningsOrErrors())
JavaScript
var booleanResponse = systemNotification.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$systemNotification.ThrowErrors()
JavaScript
systemNotification.ThrowErrors();