Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 905 Bytes

Contact.md

File metadata and controls

32 lines (23 loc) · 905 Bytes

Contact

Properties

Name Type Description Notes
name str [optional]
email str [optional]
role str [optional]
organization str [optional]

Example

from notehub_py.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_from_dict = Contact.from_dict(contact_dict)

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