Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.77 KB

File metadata and controls

48 lines (39 loc) · 2.77 KB

VerificationRequest

Properties

Name Type Description Notes
business_address Address
business_contact Contact
message_volume int Estimated monthly volume of messages from the toll-free number.
phone_numbers List[str]
use_case str The category of the use case.
use_case_summary str A general idea of the use case and customer.
production_message_content str Example of message content.
opt_in_workflow OptInWorkflow
additional_information str Any additional information. [optional]
isv_reseller str ISV name. [optional]
privacy_policy_url str 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]
business_registration_number str Government-issued business identifying number. [optional]
business_registration_type BusinessRegistrationTypeEnum [optional]
business_registration_issuing_country BusinessRegistrationIssuingCountryEnum [optional]
business_entity_type BusinessEntityTypeEnum
help_message_response str A message that gets sent to users requesting help. [optional]
age_gated_content bool Indicates whether the content is age-gated. [optional]
cv_token str The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. Supplying an empty string will likely result in rejection. [optional]

Example

from bandwidth.models.verification_request import VerificationRequest

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

# convert the object into a dict
verification_request_dict = verification_request_instance.to_dict()
# create an instance of VerificationRequest from a dict
verification_request_from_dict = VerificationRequest.from_dict(verification_request_dict)

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