Name |
Type |
Description |
Notes |
state |
CallStateEnum |
|
[optional] [default to CallStateEnum.ACTIVE] |
redirect_url |
str |
The URL to send the Redirect event to which will provide new BXML. Required if `state` is `active`. Not allowed if `state` is `completed`. |
[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 redirect callback delivery in case `redirectUrl` fails to respond. |
[optional] |
redirect_fallback_method |
RedirectMethodEnum |
|
[optional] [default to RedirectMethodEnum.POST] |
fallback_username |
str |
Basic auth username. |
[optional] |
fallback_password |
str |
Basic auth password. |
[optional] |
tag |
str |
A custom string that will be sent with this and all future callbacks unless overwritten by a future `tag` attribute or `<Tag>` verb, or cleared. May be cleared by setting `tag=""`. Max length 256 characters. Not allowed if `state` is `completed`. |
[optional] |
from bandwidth.models.update_call import UpdateCall
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateCall from a JSON string
update_call_instance = UpdateCall.from_json(json)
# print the JSON string representation of the object
print(UpdateCall.to_json())
# convert the object into a dict
update_call_dict = update_call_instance.to_dict()
# create an instance of UpdateCall from a dict
update_call_from_dict = UpdateCall.from_dict(update_call_dict)
[Back to Model list] [Back to API list] [Back to README]