Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
42 lines (34 loc) · 1.4 KB

File metadata and controls

42 lines (34 loc) · 1.4 KB

Notification

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
number int [optional]
data object [optional]
note_data object [optional]
type str [optional]
read bool [optional]
user_id str [optional]
user_name str [optional]
created_at str [optional]
message str [optional]
related_id str [optional]
related_name str [optional]
related_parent_id str [optional]
related_parent_name str [optional]

Example

from clientapi_atrocore.models.notification import Notification

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

# convert the object into a dict
notification_dict = notification_instance.to_dict()
# create an instance of Notification from a dict
notification_form_dict = notification.from_dict(notification_dict)

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