Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

LineageEdgeResponse

An edge in the lineage graph.

Properties

Name Type Description Notes
parent_chunk_id UUID Parent chunk ID (source)
chunk_id UUID Child chunk ID (derived)

Example

from ksapi.models.lineage_edge_response import LineageEdgeResponse

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

# convert the object into a dict
lineage_edge_response_dict = lineage_edge_response_instance.to_dict()
# create an instance of LineageEdgeResponse from a dict
lineage_edge_response_from_dict = LineageEdgeResponse.from_dict(lineage_edge_response_dict)

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