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

Latest commit

 

History

History
51 lines (43 loc) · 1.7 KB

File metadata and controls

51 lines (43 loc) · 1.7 KB

Note

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
post str [optional]
data object [optional]
type str [optional]
target_type str [optional]
parent_id str [optional]
parent_name str [optional]
related_id str [optional]
related_name str [optional]
attachments str [optional]
number int [optional]
is_global bool [optional]
created_by_gender str [optional]
notified_user_id_list object [optional]
is_internal bool [optional]
created_at str [optional]
modified_at str [optional]
created_by_id str [optional]
created_by_name str [optional]
modified_by_id str [optional]
modified_by_name str [optional]
attribute_id str [optional]
pav_id str [optional]

Example

from clientapi_atrocore.models.note import Note

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

# convert the object into a dict
note_dict = note_instance.to_dict()
# create an instance of Note from a dict
note_form_dict = note.from_dict(note_dict)

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