Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 865 Bytes

Contact.md

File metadata and controls

30 lines (22 loc) · 865 Bytes

Contact

Properties

Name Type Description Notes
name str [optional]
phone str [optional]
email str [optional]

Example

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)

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