Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

ContactDetails.md

File metadata and controls

33 lines (24 loc) · 1.03 KB

ContactDetails

Properties

Name Type Description Notes
email str
name str
phone_number PhoneNumber [optional]
job_title str [optional]
company_name str [optional]

Example

from boldsign.models.contact_details import ContactDetails

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

# convert the object into a dict
contact_details_dict = contact_details_instance.to_dict()
# create an instance of ContactDetails from a dict
contact_details_from_dict = ContactDetails.from_dict(contact_details_dict)

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