Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.34 KB

File metadata and controls

33 lines (24 loc) · 1.34 KB

CalendarChannelEventAssociation

Calendar Channel Event Associations

Properties

Name Type Description Notes
event_external_id str Event external ID [optional]
recurring_event_external_id str Recurring Event ID [optional]
calendar_channel_id UUID [optional]
calendar_event_id UUID [optional]

Example

from twentycrm_client.models.calendar_channel_event_association import CalendarChannelEventAssociation

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

# convert the object into a dict
calendar_channel_event_association_dict = calendar_channel_event_association_instance.to_dict()
# create an instance of CalendarChannelEventAssociation from a dict
calendar_channel_event_association_from_dict = CalendarChannelEventAssociation.from_dict(calendar_channel_event_association_dict)

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