Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

ListNotificationsRequest

Request model for listing notifications.

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]