A person
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Id | [optional] |
| created_at | datetime | Creation date | [optional] |
| updated_at | datetime | Last time the record was changed | [optional] |
| deleted_at | datetime | Date when the record was deleted | [optional] |
| name | PersonName | [optional] | |
| emails | PersonEmails | [optional] | |
| linkedin_link | PersonLinkedinLink | [optional] | |
| x_link | PersonXLink | [optional] | |
| job_title | str | Contact's job title | [optional] |
| phones | PersonPhones | [optional] | |
| city | str | Contact's city | [optional] |
| avatar_url | str | Contact's avatar | [optional] |
| avatar_file | List[AttachmentForResponseFileInner] | Contact's avatar file | [optional] |
| position | float | Person record Position | [optional] |
| created_by | AttachmentForResponseCreatedBy | [optional] | |
| updated_by | AttachmentForResponseUpdatedBy | [optional] | |
| company_id | UUID | [optional] | |
| attachments | List[AttachmentForResponse] | Attachments linked to the contact. | [optional] |
| calendar_event_participants | List[CalendarEventParticipantForResponse] | Calendar Event Participants | [optional] |
| company | CompanyForResponse | [optional] | |
| favorites | List[FavoriteForResponse] | Favorites linked to the contact | [optional] |
| message_participants | List[MessageParticipantForResponse] | Message Participants | [optional] |
| note_targets | List[NoteTargetForResponse] | Notes tied to the contact | [optional] |
| point_of_contact_for_opportunities | List[OpportunityForResponse] | List of opportunities for which that person is the point of contact | [optional] |
| task_targets | List[TaskTargetForResponse] | Tasks tied to the contact | [optional] |
| timeline_activities | List[TimelineActivityForResponse] | Events linked to the person | [optional] |
from twentycrm_client.models.person_for_response import PersonForResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PersonForResponse from a JSON string
person_for_response_instance = PersonForResponse.from_json(json)
# print the JSON string representation of the object
print(PersonForResponse.to_json())
# convert the object into a dict
person_for_response_dict = person_for_response_instance.to_dict()
# create an instance of PersonForResponse from a dict
person_for_response_from_dict = PersonForResponse.from_dict(person_for_response_dict)