Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1 KB

ActionExecResultEntry.md

File metadata and controls

28 lines (20 loc) · 1 KB

ActionExecResultEntry

Properties

Name Type Description Notes
entry ActionExecResult

Example

from alfresco_core_api_client.models.action_exec_result_entry import ActionExecResultEntry

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

# convert the object into a dict
action_exec_result_entry_dict = action_exec_result_entry_instance.to_dict()
# create an instance of ActionExecResultEntry from a dict
action_exec_result_entry_form_dict = action_exec_result_entry.from_dict(action_exec_result_entry_dict)

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