Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 943 Bytes

GPGKeyEmail.md

File metadata and controls

31 lines (22 loc) · 943 Bytes

GPGKeyEmail

GPGKeyEmail an email attached to a GPGKey

Properties

Name Type Description Notes
email str [optional]
verified bool [optional]

Example

from clientapi_forgejo.models.gpg_key_email import GPGKeyEmail

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

# convert the object into a dict
gpg_key_email_dict = gpg_key_email_instance.to_dict()
# create an instance of GPGKeyEmail from a dict
gpg_key_email_from_dict = GPGKeyEmail.from_dict(gpg_key_email_dict)

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