Name | Type | Description | Notes |
---|---|---|---|
nodes | List[Asset] | ||
edges | List[AssetRelationship] |
from usd_search_client.models.asset_graph import AssetGraph
# update the JSON string below
json = "{}"
# create an instance of AssetGraph from a JSON string
asset_graph_instance = AssetGraph.from_json(json)
# print the JSON string representation of the object
print(AssetGraph.to_json())
# convert the object into a dict
asset_graph_dict = asset_graph_instance.to_dict()
# create an instance of AssetGraph from a dict
asset_graph_from_dict = AssetGraph.from_dict(asset_graph_dict)