Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 915 Bytes

AssetGraph.md

File metadata and controls

30 lines (21 loc) · 915 Bytes

AssetGraph

Properties

Name Type Description Notes
nodes List[Asset]
edges List[AssetRelationship]

Example

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)

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