Response containing the ancestry chain from root to target (inclusive).
| Name | Type | Description | Notes |
|---|---|---|---|
| ancestors | List[PathPartAncestorItem] | Ancestors ordered root-to-leaf |
from ksapi.models.ancestry_response import AncestryResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AncestryResponse from a JSON string
ancestry_response_instance = AncestryResponse.from_json(json)
# print the JSON string representation of the object
print(AncestryResponse.to_json())
# convert the object into a dict
ancestry_response_dict = ancestry_response_instance.to_dict()
# create an instance of AncestryResponse from a dict
ancestry_response_from_dict = AncestryResponse.from_dict(ancestry_response_dict)