DeleteEmailOption options when deleting email addresses
| Name | Type | Description | Notes |
|---|---|---|---|
| emails | List[str] | email addresses to delete | [optional] |
from clientapi_forgejo.models.delete_email_option import DeleteEmailOption
# TODO update the JSON string below
json = "{}"
# create an instance of DeleteEmailOption from a JSON string
delete_email_option_instance = DeleteEmailOption.from_json(json)
# print the JSON string representation of the object
print(DeleteEmailOption.to_json())
# convert the object into a dict
delete_email_option_dict = delete_email_option_instance.to_dict()
# create an instance of DeleteEmailOption from a dict
delete_email_option_from_dict = DeleteEmailOption.from_dict(delete_email_option_dict)