Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 895 Bytes

ActivityEntry.md

File metadata and controls

28 lines (20 loc) · 895 Bytes

ActivityEntry

Properties

Name Type Description Notes
entry Activity

Example

from alfresco_core_api_client.models.activity_entry import ActivityEntry

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

# convert the object into a dict
activity_entry_dict = activity_entry_instance.to_dict()
# create an instance of ActivityEntry from a dict
activity_entry_form_dict = activity_entry.from_dict(activity_entry_dict)

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