Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

StorageBackendInfo.md

File metadata and controls

31 lines (22 loc) · 1.16 KB

StorageBackendInfo

Properties

Name Type Description Notes
asset_status BackendStatusType Status of the asset in the storage backend
storage_asset_hash str Current hash value of the asset in storage [optional]
metadata PathType asset metadata [optional]

Example

from usd_search_client.models.storage_backend_info import StorageBackendInfo

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

# convert the object into a dict
storage_backend_info_dict = storage_backend_info_instance.to_dict()
# create an instance of StorageBackendInfo from a dict
storage_backend_info_from_dict = StorageBackendInfo.from_dict(storage_backend_info_dict)

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