Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 810 Bytes

Asset.md

File metadata and controls

30 lines (21 loc) · 810 Bytes

Asset

Properties

Name Type Description Notes
url str
deleted bool [optional] [default to False]

Example

from usd_search_client.models.asset import Asset

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

# convert the object into a dict
asset_dict = asset_instance.to_dict()
# create an instance of Asset from a dict
asset_from_dict = Asset.from_dict(asset_dict)

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