Name |
Type |
Description |
Notes |
current_call_queue_size |
int |
The number of calls currently enqueued. |
[optional] |
max_call_queue_size |
int |
The maximum size of the queue before outgoing calls start being rejected. |
[optional] |
from bandwidth.models.account_statistics import AccountStatistics
# TODO update the JSON string below
json = "{}"
# create an instance of AccountStatistics from a JSON string
account_statistics_instance = AccountStatistics.from_json(json)
# print the JSON string representation of the object
print(AccountStatistics.to_json())
# convert the object into a dict
account_statistics_dict = account_statistics_instance.to_dict()
# create an instance of AccountStatistics from a dict
account_statistics_from_dict = AccountStatistics.from_dict(account_statistics_dict)
[Back to Model list] [Back to API list] [Back to README]