Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 936 Bytes

PathInfo.md

File metadata and controls

30 lines (22 loc) · 936 Bytes

PathInfo

Properties

Name Type Description Notes
elements List[PathElement] [optional]
name str [optional]
is_complete bool [optional]

Example

from alfresco_core_api_client.models.path_info import PathInfo

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

# convert the object into a dict
path_info_dict = path_info_instance.to_dict()
# create an instance of PathInfo from a dict
path_info_form_dict = path_info.from_dict(path_info_dict)

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