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
The Toll-Free Verification request privacy policy URL.
[optional]
terms_and_conditions_url
str
The Toll-Free Verification request terms and conditions policy URL.
[optional]
business_dba
str
The company 'Doing Business As'.
[optional]
Example
frombandwidth.models.verification_update_requestimportVerificationUpdateRequest# TODO update the JSON string belowjson="{}"# create an instance of VerificationUpdateRequest from a JSON stringverification_update_request_instance=VerificationUpdateRequest.from_json(json)
# print the JSON string representation of the objectprint(VerificationUpdateRequest.to_json())
# convert the object into a dictverification_update_request_dict=verification_update_request_instance.to_dict()
# create an instance of VerificationUpdateRequest from a dictverification_update_request_from_dict=VerificationUpdateRequest.from_dict(verification_update_request_dict)