Name |
Type |
Description |
Notes |
id |
str |
|
[optional] |
name |
str |
|
[optional] |
node_type |
str |
|
[optional] |
aspect_names |
List[str] |
|
[optional] |
from alfresco_core_api_client.models.path_element import PathElement
# TODO update the JSON string below
json = "{}"
# create an instance of PathElement from a JSON string
path_element_instance = PathElement.from_json(json)
# print the JSON string representation of the object
print PathElement.to_json()
# convert the object into a dict
path_element_dict = path_element_instance.to_dict()
# create an instance of PathElement from a dict
path_element_form_dict = path_element.from_dict(path_element_dict)
[Back to Model list] [Back to API list] [Back to README]