GPGKeyEmail an email attached to a GPGKey
Name | Type | Description | Notes |
---|---|---|---|
str | [optional] | ||
verified | bool | [optional] |
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)