NotificationCount number of unread notifications
| Name | Type | Description | Notes |
|---|---|---|---|
| new | int | [optional] |
from openapi_client.models.notification_count import NotificationCount
# TODO update the JSON string below
json = "{}"
# create an instance of NotificationCount from a JSON string
notification_count_instance = NotificationCount.from_json(json)
# print the JSON string representation of the object
print(NotificationCount.to_json())
# convert the object into a dict
notification_count_dict = notification_count_instance.to_dict()
# create an instance of NotificationCount from a dict
notification_count_from_dict = NotificationCount.from_dict(notification_count_dict)