A Kowabunga user email.
| Name | Type | Description | Notes |
|---|---|---|---|
| str | The user email address used for login. |
from kowabunga.models.user_email import UserEmail
# TODO update the JSON string below
json = "{}"
# create an instance of UserEmail from a JSON string
user_email_instance = UserEmail.from_json(json)
# print the JSON string representation of the object
print(UserEmail.to_json())
# convert the object into a dict
user_email_dict = user_email_instance.to_dict()
# create an instance of UserEmail from a dict
user_email_from_dict = UserEmail.from_dict(user_email_dict)