Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 973 Bytes

Email.md

File metadata and controls

34 lines (25 loc) · 973 Bytes

Email

Email an email address belonging to a user

Properties

Name Type Description Notes
email str [optional]
primary bool [optional]
user_id int [optional]
username str [optional]
verified bool [optional]

Example

from clientapi_forgejo.models.email import Email

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

# convert the object into a dict
email_dict = email_instance.to_dict()
# create an instance of Email from a dict
email_from_dict = Email.from_dict(email_dict)

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