Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 987 Bytes

File metadata and controls

29 lines (20 loc) · 987 Bytes

BaseNotifications

Properties

Name Type Description Notes
data List[BaseNotification] List of notifications. [optional]

Example

from talon_one.models.base_notifications import BaseNotifications

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

# convert the object into a dict
base_notifications_dict = base_notifications_instance.to_dict()
# create an instance of BaseNotifications from a dict
base_notifications_from_dict = BaseNotifications.from_dict(base_notifications_dict)

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