Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

LineageGraphResponse

Complete lineage graph with nodes and edges.

Properties

Name Type Description Notes
nodes List[LineageNodeResponse] Chunk nodes in the graph
edges List[LineageEdgeResponse] Lineage edges in the graph

Example

from ksapi.models.lineage_graph_response import LineageGraphResponse

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

# convert the object into a dict
lineage_graph_response_dict = lineage_graph_response_instance.to_dict()
# create an instance of LineageGraphResponse from a dict
lineage_graph_response_from_dict = LineageGraphResponse.from_dict(lineage_graph_response_dict)

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