Complete lineage graph with nodes and edges.
| Name | Type | Description | Notes |
|---|---|---|---|
| nodes | List[LineageNodeResponse] | Chunk nodes in the graph | |
| edges | List[LineageEdgeResponse] | Lineage edges in the graph |
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)