Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

CompanyXLink

The company Twitter/X 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.company_x_link import CompanyXLink

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

# convert the object into a dict
company_x_link_dict = company_x_link_instance.to_dict()
# create an instance of CompanyXLink from a dict
company_x_link_from_dict = CompanyXLink.from_dict(company_x_link_dict)

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