Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.63 KB

File metadata and controls

42 lines (33 loc) · 1.63 KB

Person

A person

Properties

Name Type Description Notes
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[AttachmentFileInner] Contact's avatar file [optional]
position float Person record Position [optional]
created_by AttachmentCreatedBy [optional]
updated_by AttachmentUpdatedBy [optional]
company_id UUID [optional]

Example

from twentycrm_client.models.person import Person

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

# convert the object into a dict
person_dict = person_instance.to_dict()
# create an instance of Person from a dict
person_from_dict = Person.from_dict(person_dict)

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