| Name |
Type |
Description |
Notes |
| application_id |
str |
The id of the application associated with the `from` number. |
|
| account_id |
str |
The bandwidth account ID associated with the call. |
|
| call_id |
str |
Programmable Voice API Call ID. |
|
| to |
str |
Recipient of the outgoing call. |
|
| var_from |
str |
Phone number that created the outbound call. |
|
| enqueued_time |
datetime |
The time at which the call was accepted into the queue. |
[optional] |
| call_url |
str |
The URL to update this call's state. |
|
| call_timeout |
float |
The timeout (in seconds) for the callee to answer the call after it starts ringing. |
[optional] |
| callback_timeout |
float |
This is the timeout (in seconds) to use when delivering webhooks for the call. |
[optional] |
| tag |
str |
Custom tag value. |
[optional] |
| answer_method |
CallbackMethodEnum |
|
[default to CallbackMethodEnum.POST] |
| answer_url |
str |
URL to deliver the `answer` event webhook. |
|
| answer_fallback_method |
CallbackMethodEnum |
|
[optional] [default to CallbackMethodEnum.POST] |
| answer_fallback_url |
str |
Fallback URL to deliver the `answer` event webhook. |
[optional] |
| disconnect_method |
CallbackMethodEnum |
|
[default to CallbackMethodEnum.POST] |
| disconnect_url |
str |
URL to deliver the `disconnect` event webhook. |
[optional] |
| username |
str |
Basic auth username. |
[optional] |
| password |
str |
Basic auth password. |
[optional] |
| fallback_username |
str |
Basic auth username. |
[optional] |
| fallback_password |
str |
Basic auth password. |
[optional] |
| priority |
int |
The priority of this call over other calls from your account. |
[optional] |
from bandwidth.models.create_call_response import CreateCallResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateCallResponse from a JSON string
create_call_response_instance = CreateCallResponse.from_json(json)
# print the JSON string representation of the object
print(CreateCallResponse.to_json())
# convert the object into a dict
create_call_response_dict = create_call_response_instance.to_dict()
# create an instance of CreateCallResponse from a dict
create_call_response_from_dict = CreateCallResponse.from_dict(create_call_response_dict)
[Back to Model list] [Back to API list] [Back to README]