Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1016 Bytes

File metadata and controls

30 lines (21 loc) · 1016 Bytes

NotificationAndCount

Properties

Name Type Description Notes
type NotificationType
count int

Example

from client.models.notification_and_count import NotificationAndCount

# TODO update the JSON string below
json = "{}"
# create an instance of NotificationAndCount from a JSON string
notification_and_count_instance = NotificationAndCount.from_json(json)
# print the JSON string representation of the object
print(NotificationAndCount.to_json())

# convert the object into a dict
notification_and_count_dict = notification_and_count_instance.to_dict()
# create an instance of NotificationAndCount from a dict
notification_and_count_from_dict = NotificationAndCount.from_dict(notification_and_count_dict)

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