A container for fields of a contact
| Name | Type | Description | Notes |
|---|---|---|---|
| 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] |
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)