Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1001 Bytes

File metadata and controls

30 lines (21 loc) · 1001 Bytes

EncryptedRequestDTO

Properties

Name Type Description Notes
payload str
signature str [optional]

Example

from dappserver_server_sdk.models.encrypted_request_dto import EncryptedRequestDTO

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

# convert the object into a dict
encrypted_request_dto_dict = encrypted_request_dto_instance.to_dict()
# create an instance of EncryptedRequestDTO from a dict
encrypted_request_dto_form_dict = encrypted_request_dto.from_dict(encrypted_request_dto_dict)

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