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

Latest commit

 

History

History
36 lines (28 loc) · 1.39 KB

File metadata and controls

36 lines (28 loc) · 1.39 KB

CreateNotificationItemRequest

Properties

Name Type Description Notes
number int [optional]
data object [optional]
note_data object [optional]
type str [optional]
read bool [optional]
user_id str [optional]
message str [optional]
related_id str [optional]
related_parent_id str [optional]

Example

from clientapi_atrocore.models.create_notification_item_request import CreateNotificationItemRequest

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

# convert the object into a dict
create_notification_item_request_dict = create_notification_item_request_instance.to_dict()
# create an instance of CreateNotificationItemRequest from a dict
create_notification_item_request_form_dict = create_notification_item_request.from_dict(create_notification_item_request_dict)

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