| Name | Type | Description | Notes |
|---|---|---|---|
| is_twilio_terms_read | object | ||
| is_privacy_policy_on_website | object | ||
| is_tos_on_website | object | ||
| is_stop_understood | object | ||
| is_manual_read | object | ||
| is_ctia_short_code_read | object | ||
| is_standards_understood | object | ||
| is_short_code_understood | object | ||
| is_opt_in_out_understood | object | ||
| is_short_code_transfer_understood | object | ||
| is_pricing_understood | object | ||
| is_short_code_timeline_understood | object | ||
| business_name | object | ||
| business_type | BusinessType | ||
| business_classification | BusinessClassification | ||
| business_industry | BusinessIndustry | ||
| tax_id_type | BusinessRegistrationIdentifier | ||
| tax_id | object | ||
| website_url | object | ||
| social_media_url | object | ||
| regions_of_operation | object | ||
| stock_exchange | BusinessStockExchanges | [optional] | |
| stock_ticker | object | [optional] | |
| messaging_volume_high | object | ||
| address1 | object | ||
| address2 | object | [optional] | |
| city | object | ||
| state | object | ||
| postal_code | object | ||
| country | object | ||
| first_name | object | ||
| last_name | object | ||
| object | |||
| job_title | object | ||
| job_position | JobPosition | ||
| phone_number | object |
from wallet.models.a2_p_application_submission import A2PApplicationSubmission
# TODO update the JSON string below
json = "{}"
# create an instance of A2PApplicationSubmission from a JSON string
a2_p_application_submission_instance = A2PApplicationSubmission.from_json(json)
# print the JSON string representation of the object
print A2PApplicationSubmission.to_json()
# convert the object into a dict
a2_p_application_submission_dict = a2_p_application_submission_instance.to_dict()
# create an instance of A2PApplicationSubmission from a dict
a2_p_application_submission_form_dict = a2_p_application_submission.from_dict(a2_p_application_submission_dict)