Name |
Type |
Description |
Notes |
email |
str |
|
[optional] |
primary |
str |
|
[optional] |
home |
str |
|
[optional] |
work |
str |
|
[optional] |
from wonde.models.contact_details_emails import ContactDetailsEmails
# TODO update the JSON string below
json = "{}"
# create an instance of ContactDetailsEmails from a JSON string
contact_details_emails_instance = ContactDetailsEmails.from_json(json)
# print the JSON string representation of the object
print ContactDetailsEmails.to_json()
# convert the object into a dict
contact_details_emails_dict = contact_details_emails_instance.to_dict()
# create an instance of ContactDetailsEmails from a dict
contact_details_emails_form_dict = contact_details_emails.from_dict(contact_details_emails_dict)
[Back to Model list] [Back to API list] [Back to README]