Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1008 Bytes

File metadata and controls

31 lines (22 loc) · 1008 Bytes

OpenPGPSignBYIDDTO

Properties

Name Type Description Notes
id str
message str
passphrase str

Example

from dappserver_server_sdk.models.open_pgp_sign_byiddto import OpenPGPSignBYIDDTO

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

# convert the object into a dict
open_pgp_sign_byiddto_dict = open_pgp_sign_byiddto_instance.to_dict()
# create an instance of OpenPGPSignBYIDDTO from a dict
open_pgp_sign_byiddto_form_dict = open_pgp_sign_byiddto.from_dict(open_pgp_sign_byiddto_dict)

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