| Name | Type | Description | Notes |
|---|---|---|---|
| input | str |
from dappserver_server_sdk.models.hash_dto import HashDTO
# TODO update the JSON string below
json = "{}"
# create an instance of HashDTO from a JSON string
hash_dto_instance = HashDTO.from_json(json)
# print the JSON string representation of the object
print HashDTO.to_json()
# convert the object into a dict
hash_dto_dict = hash_dto_instance.to_dict()
# create an instance of HashDTO from a dict
hash_dto_form_dict = hash_dto.from_dict(hash_dto_dict)