hash of the asset
Name | Type | Description | Notes |
---|
from usd_search_client.models.hash_value import HashValue
# update the JSON string below
json = "{}"
# create an instance of HashValue from a JSON string
hash_value_instance = HashValue.from_json(json)
# print the JSON string representation of the object
print(HashValue.to_json())
# convert the object into a dict
hash_value_dict = hash_value_instance.to_dict()
# create an instance of HashValue from a dict
hash_value_from_dict = HashValue.from_dict(hash_value_dict)