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