-
-
Notifications
You must be signed in to change notification settings - Fork 9
mattermostmodels NotifyProps
User notification properties.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Mattermost.Models
Mattermost.Models.NotifyProps[[NotifyProps]]
end
| Type | Name | Methods |
|---|---|---|
string |
ChannelSet to "true" to enable channel-wide notifications (@channel, @all, etc.), "false" to disable. Defaults to "true". |
get, set |
string |
DesktopSet to "all" to receive desktop notifications for all activity, "mention" for mentions and direct messages only, and "none" to disable. Defaults to "all". |
get, set |
string |
DesktopSoundSet to "true" to enable sound on desktop notifications, "false" to disable. Defaults to "true". |
get, set |
string |
EmailSet to "true" to enable email notifications, "false" to disable. Defaults to "true". |
get, set |
string |
FirstNameSet to "true" to enable mentions for first name. Defaults to "true" if a first name is set, "false" otherwise. |
get, set |
string |
MentionKeysSet to "true" to enable mentions for mention keys. Defaults to "true" if a first name is set, "false" otherwise. |
get, set |
string |
PushSet to "all" to receive push notifications for all activity, "mention" for mentions and direct messages only, and "none" to disable. Defaults to "mention". |
get, set |
User notification properties.
public NotifyProps()public string Channel { get; set; }Set to "true" to enable channel-wide notifications (@channel, @all, etc.), "false" to disable. Defaults to "true".
public string Desktop { get; set; }Set to "all" to receive desktop notifications for all activity, "mention" for mentions and direct messages only, and "none" to disable. Defaults to "all".
public string DesktopSound { get; set; }Set to "true" to enable sound on desktop notifications, "false" to disable. Defaults to "true".
public string Email { get; set; }Set to "true" to enable email notifications, "false" to disable. Defaults to "true".
public string FirstName { get; set; }Set to "true" to enable mentions for first name. Defaults to "true" if a first name is set, "false" otherwise.
public string MentionKeys { get; set; }Set to "true" to enable mentions for mention keys. Defaults to "true" if a first name is set, "false" otherwise.
public string Push { get; set; }Set to "all" to receive push notifications for all activity, "mention" for mentions and direct messages only, and "none" to disable. Defaults to "mention".
Generated with ModularDoc