Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.86 KB

VerificationDenialWebhook.md

File metadata and controls

36 lines (27 loc) · 1.86 KB

VerificationDenialWebhook

Properties

Name Type Description Notes
account_id str User's account ID. [optional]
additional_denial_reasons List[AdditionalDenialReason] An optional list of denial reasons in addition to declineReasonDescription when multiple reasons apply. [optional]
decline_reason_description str Explanation for why a verification request was declined. [optional]
denial_status_code int Reason code for denial. [optional]
internal_ticket_number str Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number. [optional]
phone_number str Toll-free telephone number in E.164 format. [optional]
resubmit_allowed bool Whether a Toll-Free Verification request qualifies for resubmission via PUT. [optional]
status str [optional] [default to 'UNVERIFIED']

Example

from bandwidth.models.verification_denial_webhook import VerificationDenialWebhook

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

# convert the object into a dict
verification_denial_webhook_dict = verification_denial_webhook_instance.to_dict()
# create an instance of VerificationDenialWebhook from a dict
verification_denial_webhook_from_dict = VerificationDenialWebhook.from_dict(verification_denial_webhook_dict)

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