Name | Type | Description | Notes |
---|---|---|---|
name | str | [optional] | |
phone | str | [optional] | |
str | [optional] |
from sparkfly_client.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)