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