Properties
Name | Access | Type | Description |
---|---|---|---|
DistributionTypeId | Read | Nullable of Guid | Distribution Type Id |
Errors | Read | IList of Error | Errors |
IsEnabled | Read | Boolean | Is Enabled |
NotificationTypeId | Read | Guid | Notification Type Id |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $notificationUserPreference.HasErrors())
JavaScript
var booleanResponse = notificationUserPreference.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $notificationUserPreference.HasWarnings())
JavaScript
var booleanResponse = notificationUserPreference.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $notificationUserPreference.HasWarningsOrErrors())
JavaScript
var booleanResponse = notificationUserPreference.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$notificationUserPreference.ThrowErrors()
JavaScript
notificationUserPreference.ThrowErrors();