Name |
Type |
Description |
Notes |
reason |
str |
The reason for the diversion. Common values: unknown, user-busy, no-answer, unavailable, unconditional, time-of-day, do-not-disturb, deflection, follow-me, out-of-service, away. |
[optional] |
privacy |
str |
off or full |
[optional] |
screen |
str |
No if the number was provided by the user, yes if the number was provided by the network |
[optional] |
counter |
str |
The number of diversions that have occurred |
[optional] |
limit |
str |
The maximum number of diversions allowed for this session |
[optional] |
unknown |
str |
The normal list of values is not exhaustive. Your application must be tolerant of unlisted keys and unlisted values of those keys. |
[optional] |
orig_to |
str |
Always present. Indicates the last telephone number that the call was diverted from. |
[optional] |
from bandwidth.models.diversion import Diversion
# TODO update the JSON string below
json = "{}"
# create an instance of Diversion from a JSON string
diversion_instance = Diversion.from_json(json)
# print the JSON string representation of the object
print(Diversion.to_json())
# convert the object into a dict
diversion_dict = diversion_instance.to_dict()
# create an instance of Diversion from a dict
diversion_from_dict = Diversion.from_dict(diversion_dict)
[Back to Model list] [Back to API list] [Back to README]