Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

AccountStatistics.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

AccountStatistics

Properties

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]

Example

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]