Properties
Name | Access | Type | Description |
---|---|---|---|
Errors | Read | IList of Error | Errors |
Preferences | Read | IList of NotificationUserPreference | Preferences |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $notificationUserPreferences.HasErrors())
JavaScript
var booleanResponse = notificationUserPreferences.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $notificationUserPreferences.HasWarnings())
JavaScript
var booleanResponse = notificationUserPreferences.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $notificationUserPreferences.HasWarningsOrErrors())
JavaScript
var booleanResponse = notificationUserPreferences.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$notificationUserPreferences.ThrowErrors()
JavaScript
notificationUserPreferences.ThrowErrors();