Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

CalendarEventConferenceLink

Meet Link

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.calendar_event_conference_link import CalendarEventConferenceLink

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

# convert the object into a dict
calendar_event_conference_link_dict = calendar_event_conference_link_instance.to_dict()
# create an instance of CalendarEventConferenceLink from a dict
calendar_event_conference_link_from_dict = CalendarEventConferenceLink.from_dict(calendar_event_conference_link_dict)

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