Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

VerificationWebhook.md

File metadata and controls

32 lines (23 loc) · 1.29 KB

VerificationWebhook

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]
status TfvCallbackStatusEnum [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.verification_webhook import VerificationWebhook

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

# convert the object into a dict
verification_webhook_dict = verification_webhook_instance.to_dict()
# create an instance of VerificationWebhook from a dict
verification_webhook_from_dict = VerificationWebhook.from_dict(verification_webhook_dict)

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