Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.58 KB

VerificationUpdateRequest.md

File metadata and controls

37 lines (28 loc) · 1.58 KB

VerificationUpdateRequest

Properties

Name Type Description Notes
business_address Address
business_contact Contact
message_volume int Estimated monthly volume of messages from the toll-free number.
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]

Example

from bandwidth.models.verification_update_request import VerificationUpdateRequest

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

# convert the object into a dict
verification_update_request_dict = verification_update_request_instance.to_dict()
# create an instance of VerificationUpdateRequest from a dict
verification_update_request_from_dict = VerificationUpdateRequest.from_dict(verification_update_request_dict)

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