Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1015 Bytes

File metadata and controls

29 lines (20 loc) · 1015 Bytes

OpenPGPGetPublicKeyDTO

Properties

Name Type Description Notes
id str

Example

from dappserver_server_sdk.models.open_pgp_get_public_key_dto import OpenPGPGetPublicKeyDTO

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

# convert the object into a dict
open_pgp_get_public_key_dto_dict = open_pgp_get_public_key_dto_instance.to_dict()
# create an instance of OpenPGPGetPublicKeyDTO from a dict
open_pgp_get_public_key_dto_form_dict = open_pgp_get_public_key_dto.from_dict(open_pgp_get_public_key_dto_dict)

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