You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Base64 payload the customer receives when the reply is clicked.
title
str
The title of the event.
start_time
datetime
The start time of the event.
end_time
datetime
The end time of the event.
description
str
The description of the event.
[optional]
Example
frombandwidth.models.multi_channel_action_calendar_eventimportMultiChannelActionCalendarEvent# TODO update the JSON string belowjson="{}"# create an instance of MultiChannelActionCalendarEvent from a JSON stringmulti_channel_action_calendar_event_instance=MultiChannelActionCalendarEvent.from_json(json)
# print the JSON string representation of the objectprint(MultiChannelActionCalendarEvent.to_json())
# convert the object into a dictmulti_channel_action_calendar_event_dict=multi_channel_action_calendar_event_instance.to_dict()
# create an instance of MultiChannelActionCalendarEvent from a dictmulti_channel_action_calendar_event_from_dict=MultiChannelActionCalendarEvent.from_dict(multi_channel_action_calendar_event_dict)