You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
frombandwidth.models.verification_denial_webhookimportVerificationDenialWebhook# TODO update the JSON string belowjson="{}"# create an instance of VerificationDenialWebhook from a JSON stringverification_denial_webhook_instance=VerificationDenialWebhook.from_json(json)
# print the JSON string representation of the objectprint(VerificationDenialWebhook.to_json())
# convert the object into a dictverification_denial_webhook_dict=verification_denial_webhook_instance.to_dict()
# create an instance of VerificationDenialWebhook from a dictverification_denial_webhook_from_dict=VerificationDenialWebhook.from_dict(verification_denial_webhook_dict)