Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 795 Bytes

File metadata and controls

29 lines (20 loc) · 795 Bytes

HashDTO

Properties

Name Type Description Notes
input str

Example

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)

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