Name |
Type |
Description |
Notes |
business_address |
Address |
|
[optional] |
business_contact |
Contact |
|
[optional] |
message_volume |
int |
Estimated monthly volume of messages from the toll-free number. |
[optional] |
use_case |
str |
The category of the use case. |
[optional] |
use_case_summary |
str |
A general idea of the use case and customer. |
[optional] |
production_message_content |
str |
Example of message content. |
[optional] |
opt_in_workflow |
OptInWorkflow |
|
[optional] |
additional_information |
str |
Any additional information. |
[optional] |
isv_reseller |
str |
ISV name. |
[optional] |
from bandwidth.models.tfv_submission_info import TfvSubmissionInfo
# TODO update the JSON string below
json = "{}"
# create an instance of TfvSubmissionInfo from a JSON string
tfv_submission_info_instance = TfvSubmissionInfo.from_json(json)
# print the JSON string representation of the object
print(TfvSubmissionInfo.to_json())
# convert the object into a dict
tfv_submission_info_dict = tfv_submission_info_instance.to_dict()
# create an instance of TfvSubmissionInfo from a dict
tfv_submission_info_from_dict = TfvSubmissionInfo.from_dict(tfv_submission_info_dict)
[Back to Model list] [Back to API list] [Back to README]