Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 804 Bytes

HashValue.md

File metadata and controls

29 lines (20 loc) · 804 Bytes

HashValue

hash of the asset

Properties

Name Type Description Notes

Example

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)

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