Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

PersonXLink

Contact's X/Twitter account

Properties

Name Type Description Notes
primary_link_label str [optional]
primary_link_url str [optional]
secondary_links List[CalendarEventConferenceLinkSecondaryLinksInner] [optional]

Example

from twentycrm_client.models.person_x_link import PersonXLink

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

# convert the object into a dict
person_x_link_dict = person_x_link_instance.to_dict()
# create an instance of PersonXLink from a dict
person_x_link_from_dict = PersonXLink.from_dict(person_x_link_dict)

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