Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.49 KB

File metadata and controls

38 lines (29 loc) · 1.49 KB

ContactUpdateFields

A container for fields of a contact

Properties

Name Type Description Notes
email str The email of the contact [optional]
first_name str The first name of the contact [optional]
last_name str The last name of the contact [optional]
company str The company of the contact [optional]
title str The title of the contact [optional]
custom str The first custom field [optional]
custom2 str The second custom field [optional]
custom3 str The third custom field [optional]
custom4 str The fourth custom field [optional]

Example

from messente_api.models.contact_update_fields import ContactUpdateFields

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

# convert the object into a dict
contact_update_fields_dict = contact_update_fields_instance.to_dict()
# create an instance of ContactUpdateFields from a dict
contact_update_fields_from_dict = ContactUpdateFields.from_dict(contact_update_fields_dict)

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