Request model for listing notifications.
| Name | Type | Description | Notes |
|---|---|---|---|
| notification_type | NotificationType | Filter by notification type | [optional] |
| priority | NotificationPriority | Filter by priority | [optional] |
| read | bool | Filter by read status | [optional] |
| user_id | str | Filter by user ID | [optional] |
from mixpeek.models.list_notifications_request import ListNotificationsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ListNotificationsRequest from a JSON string
list_notifications_request_instance = ListNotificationsRequest.from_json(json)
# print the JSON string representation of the object
print(ListNotificationsRequest.to_json())
# convert the object into a dict
list_notifications_request_dict = list_notifications_request_instance.to_dict()
# create an instance of ListNotificationsRequest from a dict
list_notifications_request_from_dict = ListNotificationsRequest.from_dict(list_notifications_request_dict)