Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

QuasiSaltHashVerifyDTO

Properties

Name Type Description Notes
input str
hash str

Example

from dappserver_server_sdk.models.quasi_salt_hash_verify_dto import QuasiSaltHashVerifyDTO

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

# convert the object into a dict
quasi_salt_hash_verify_dto_dict = quasi_salt_hash_verify_dto_instance.to_dict()
# create an instance of QuasiSaltHashVerifyDTO from a dict
quasi_salt_hash_verify_dto_form_dict = quasi_salt_hash_verify_dto.from_dict(quasi_salt_hash_verify_dto_dict)

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