| Name | Type | Description | Notes |
|---|---|---|---|
| uuid | str | [optional] | |
| str | [optional] | ||
| name | str | [optional] | |
| surname | str | [optional] | |
| phone | str | [optional] | |
| subscription_status | str | [optional] | |
| subscribed_at | datetime | [optional] | |
| unsubscribed_at | datetime | [optional] | |
| created_at | datetime | [optional] | |
| domain | str | [optional] | |
| source | str | [optional] | |
| note | str | [optional] | |
| tags | List[ReachV1ContactsTagsTagResource] | [optional] | |
| fields | List[ReachV1ContactsFieldsContactFieldValueResource] | Custom field values held by this contact | [optional] |
from hostinger_api.models.reach_v1_contacts_contact_details_resource import ReachV1ContactsContactDetailsResource
# TODO update the JSON string below
json = "{}"
# create an instance of ReachV1ContactsContactDetailsResource from a JSON string
reach_v1_contacts_contact_details_resource_instance = ReachV1ContactsContactDetailsResource.from_json(json)
# print the JSON string representation of the object
print(ReachV1ContactsContactDetailsResource.to_json())
# convert the object into a dict
reach_v1_contacts_contact_details_resource_dict = reach_v1_contacts_contact_details_resource_instance.to_dict()
# create an instance of ReachV1ContactsContactDetailsResource from a dict
reach_v1_contacts_contact_details_resource_from_dict = ReachV1ContactsContactDetailsResource.from_dict(reach_v1_contacts_contact_details_resource_dict)