Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1022 Bytes

ActionDefinitionEntry.md

File metadata and controls

28 lines (20 loc) · 1022 Bytes

ActionDefinitionEntry

Properties

Name Type Description Notes
entry ActionDefinition

Example

from alfresco_core_api_client.models.action_definition_entry import ActionDefinitionEntry

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

# convert the object into a dict
action_definition_entry_dict = action_definition_entry_instance.to_dict()
# create an instance of ActionDefinitionEntry from a dict
action_definition_entry_form_dict = action_definition_entry.from_dict(action_definition_entry_dict)

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