Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

StatusResult.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

StatusResult

Properties

Name Type Description Notes
url str URL of the asset
plugins_statuses Dict[str, PluginInfo] Indexing status of the asset for each plugin
storage_backend_info StorageBackendInfo Status of the asset on the storage backend

Example

from usd_search_client.models.status_result import StatusResult

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

# convert the object into a dict
status_result_dict = status_result_instance.to_dict()
# create an instance of StatusResult from a dict
status_result_from_dict = StatusResult.from_dict(status_result_dict)

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