Name |
Type |
Description |
Notes |
status |
str |
|
[optional] |
channel |
str |
|
[optional] |
from iblai.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)
[Back to Model list] [Back to API list] [Back to README]