The Conference Completed event is fired when the last member leaves the conference. The response to this event may not contain BXML.
Name | Type | Description | Notes |
---|---|---|---|
event_type | str | The event type, value can be one of the following: answer, bridgeComplete, bridgeTargetComplete, conferenceCreated, conferenceRedirect, conferenceMemberJoin, conferenceMemberExit, conferenceCompleted, conferenceRecordingAvailable, disconnect, dtmf, gather, initiate, machineDetectionComplete, recordingComplete, recordingAvailable, redirect, transcriptionAvailable, transferAnswer, transferComplete, transferDisconnect. | [optional] |
event_time | datetime | The approximate UTC date and time when the event was generated by the Bandwidth server, in ISO 8601 format. This may not be exactly the time of event execution. | [optional] |
conference_id | str | The unique, Bandwidth-generated ID of the conference that was recorded | [optional] |
name | str | The user-specified name of the conference that was recorded | [optional] |
tag | str | (optional) The tag specified on call creation. If no tag was specified or it was previously cleared, this field will not be present. | [optional] |
from bandwidth.models.conference_completed_callback import ConferenceCompletedCallback
# TODO update the JSON string below
json = "{}"
# create an instance of ConferenceCompletedCallback from a JSON string
conference_completed_callback_instance = ConferenceCompletedCallback.from_json(json)
# print the JSON string representation of the object
print(ConferenceCompletedCallback.to_json())
# convert the object into a dict
conference_completed_callback_dict = conference_completed_callback_instance.to_dict()
# create an instance of ConferenceCompletedCallback from a dict
conference_completed_callback_from_dict = ConferenceCompletedCallback.from_dict(conference_completed_callback_dict)