Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2 KB

UpdateConference.md

File metadata and controls

37 lines (28 loc) · 2 KB

UpdateConference

Properties

Name Type Description Notes
status ConferenceStateEnum [optional] [default to ConferenceStateEnum.ACTIVE]
redirect_url str The URL to send the conferenceRedirect event which will provide new BXML. Not allowed if `state` is `completed`, but required if `state` is `active`. [optional]
redirect_method RedirectMethodEnum [optional] [default to RedirectMethodEnum.POST]
username str Basic auth username. [optional]
password str Basic auth password. [optional]
redirect_fallback_url str A fallback url which, if provided, will be used to retry the `conferenceRedirect` webhook delivery in case `redirectUrl` fails to respond. Not allowed if `state` is `completed`. [optional]
redirect_fallback_method RedirectMethodEnum [optional] [default to RedirectMethodEnum.POST]
fallback_username str Basic auth username. [optional]
fallback_password str Basic auth password. [optional]

Example

from bandwidth.models.update_conference import UpdateConference

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

# convert the object into a dict
update_conference_dict = update_conference_instance.to_dict()
# create an instance of UpdateConference from a dict
update_conference_from_dict = UpdateConference.from_dict(update_conference_dict)

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