Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

CreateAccountResponseDTO

Properties

Name Type Description Notes
userhash str
pubkey str

Example

from dappserver_server_sdk.models.create_account_response_dto import CreateAccountResponseDTO

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

# convert the object into a dict
create_account_response_dto_dict = create_account_response_dto_instance.to_dict()
# create an instance of CreateAccountResponseDTO from a dict
create_account_response_dto_form_dict = create_account_response_dto.from_dict(create_account_response_dto_dict)

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