Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 901 Bytes

File metadata and controls

31 lines (22 loc) · 901 Bytes

PersonName

Contact's name

Properties

Name Type Description Notes
first_name str [optional]
last_name str [optional]

Example

from twentycrm_client.models.person_name import PersonName

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

# convert the object into a dict
person_name_dict = person_name_instance.to_dict()
# create an instance of PersonName from a dict
person_name_from_dict = PersonName.from_dict(person_name_dict)

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