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 |
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)