| Contact | Donate | Imprint |
| NotificationSetting | ConversationModule | SignalMessenger |
| Property | Type | Entity | Reference | Module |
| (1) Conversation | LONG | NotificationSetting | Conversation | ConversationModule |
| (2) CreatedAt | DATE | NotificationSetting | ||
| (3) CustomSound | STRING | NotificationSetting | ||
| (4) IsMuted | BOOL | NotificationSetting | ||
| (5) MutedUntil | DATE | NotificationSetting | ||
| (6) ShowPreview | BOOL | NotificationSetting | ||
| (7) UpdatedAt | DATE | NotificationSetting | ||
| (8) UserAccount | LONG | NotificationSetting | UserAccount | UserAccountModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /notificationsetting/{id} | findNotificationSettingById(id) | ConversationModule | GET | NotificationSetting |
| (2) /notificationsetting/{id} | updateNotificationSettingById(notificationsetting) | ConversationModule | PUT | NotificationSetting |
| (3) /notificationsetting/useraccount/{id} | findAllNotificationSettingOfUserAccount(id) | ConversationModule | GET | UserAccount NotificationSetting |
| (4) /notificationsetting/conversation/{id} | findAllNotificationSettingOfConversation(id) | ConversationModule | GET | Conversation NotificationSetting |
| (5) /notificationsetting | insertNotificationSetting(notificationsetting) | ConversationModule | POST | NotificationSetting |
| (6) /notificationsetting/{id} | deleteNotificationSettingById(id) | ConversationModule | DELETE | NotificationSetting |
| (7) /notificationsetting | findAllNotificationSetting() | ConversationModule | GET | NotificationSetting |
Example:
final NotificationSetting notificationsetting = (NotificationSetting) invokeModule(CONVERSATION_MODULE + "/notificationsetting/" + id, NotificationSetting.class);| Contact | Donate | Imprint |