Name |
Type |
Description |
Notes |
input |
str |
|
|
from dappserver_server_sdk.models.quasi_salt_hash_dto import QuasiSaltHashDTO
# TODO update the JSON string below
json = "{}"
# create an instance of QuasiSaltHashDTO from a JSON string
quasi_salt_hash_dto_instance = QuasiSaltHashDTO.from_json(json)
# print the JSON string representation of the object
print QuasiSaltHashDTO.to_json()
# convert the object into a dict
quasi_salt_hash_dto_dict = quasi_salt_hash_dto_instance.to_dict()
# create an instance of QuasiSaltHashDTO from a dict
quasi_salt_hash_dto_form_dict = quasi_salt_hash_dto.from_dict(quasi_salt_hash_dto_dict)
[Back to Model list] [Back to API list] [Back to README]