Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 928 Bytes

AssetGraph1.md

File metadata and controls

30 lines (21 loc) · 928 Bytes

AssetGraph1

Properties

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

Example

from usd_search_client.models.asset_graph1 import AssetGraph1

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

# convert the object into a dict
asset_graph1_dict = asset_graph1_instance.to_dict()
# create an instance of AssetGraph1 from a dict
asset_graph1_from_dict = AssetGraph1.from_dict(asset_graph1_dict)

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