Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.54 KB

FailureWebhook.md

File metadata and controls

34 lines (25 loc) · 1.54 KB

FailureWebhook

Properties

Name Type Description Notes
account_id str User's account ID. [optional]
phone_number str Toll-free telephone number in E.164 format. [optional]
error_code str An error code indicating what error was encountered. This code can be interpreted as an HTTP status code in regards to the error that was encountered. [optional]
error_description str A description of the error that was encountered. [optional]
errors List[str] Details of the errors that were encountered when processing the request. [optional]
internal_ticket_number str Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number. [optional]

Example

from bandwidth.models.failure_webhook import FailureWebhook

# TODO update the JSON string below
json = "{}"
# create an instance of FailureWebhook from a JSON string
failure_webhook_instance = FailureWebhook.from_json(json)
# print the JSON string representation of the object
print(FailureWebhook.to_json())

# convert the object into a dict
failure_webhook_dict = failure_webhook_instance.to_dict()
# create an instance of FailureWebhook from a dict
failure_webhook_from_dict = FailureWebhook.from_dict(failure_webhook_dict)

[Back to Model list] [Back to API list] [Back to README]