Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 960 Bytes

NotificationCount.md

File metadata and controls

30 lines (21 loc) · 960 Bytes

NotificationCount

Properties

Name Type Description Notes
status str [optional]
channel str [optional]

Example

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]