Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.04 KB

Contact.md

File metadata and controls

32 lines (24 loc) · 1.04 KB

Contact

Properties

Name Type Description Notes
first_name str First name of contact [optional]
last_name str Last name of contact [optional]
phone_number str Phone number of contact [optional]
email_address str Email address of contact [optional]
notes str Notes for the contact [optional]

Example

from wonde.models.contact import Contact

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

# convert the object into a dict
contact_dict = contact_instance.to_dict()
# create an instance of Contact from a dict
contact_form_dict = contact.from_dict(contact_dict)

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