Single ancestor item in an ancestry chain.
| Name | Type | Description | Notes |
|---|---|---|---|
| path_part_id | UUID | PathPart ID | |
| name | str | Item name | |
| part_type | PartType | ||
| parent_path_id | UUID | Parent PathPart ID | |
| metadata_obj_id | UUID | ID of the underlying object | |
| materialized_path | str | Full materialized path from root | |
| system_managed | bool | Whether this path part is system-managed | |
| created_at | datetime | Creation timestamp | |
| updated_at | datetime | Last update timestamp |
from ksapi.models.path_part_ancestor_item import PathPartAncestorItem
# TODO update the JSON string below
json = "{}"
# create an instance of PathPartAncestorItem from a JSON string
path_part_ancestor_item_instance = PathPartAncestorItem.from_json(json)
# print the JSON string representation of the object
print(PathPartAncestorItem.to_json())
# convert the object into a dict
path_part_ancestor_item_dict = path_part_ancestor_item_instance.to_dict()
# create an instance of PathPartAncestorItem from a dict
path_part_ancestor_item_from_dict = PathPartAncestorItem.from_dict(path_part_ancestor_item_dict)