Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 1.83 KB

Node.md

File metadata and controls

48 lines (40 loc) · 1.83 KB

Node

Properties

Name Type Description Notes
id str
name str The name must not contain spaces or the following special characters: * &quot; < > \ / ? : and . The character . must not be used at the end of the name.
node_type str
is_folder bool
is_file bool
is_locked bool [optional] [default to False]
modified_at datetime
modified_by_user UserInfo
created_at datetime
created_by_user UserInfo
parent_id str [optional]
is_link bool [optional]
is_favorite bool [optional]
is_direct_link_enabled bool [optional]
content ContentInfo [optional]
aspect_names List[str] [optional]
properties object [optional]
allowable_operations List[str] [optional]
path PathInfo [optional]
permissions PermissionsInfo [optional]
definition Definition [optional]

Example

from alfresco_core_api_client.models.node import Node

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

# convert the object into a dict
node_dict = node_instance.to_dict()
# create an instance of Node from a dict
node_form_dict = node.from_dict(node_dict)

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