| Name | Type | Description | Notes |
|---|---|---|---|
| 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.wta2_p_application_update_params import WTA2PApplicationUpdateParams
# TODO update the JSON string below
json = "{}"
# create an instance of WTA2PApplicationUpdateParams from a JSON string
wta2_p_application_update_params_instance = WTA2PApplicationUpdateParams.from_json(json)
# print the JSON string representation of the object
print WTA2PApplicationUpdateParams.to_json()
# convert the object into a dict
wta2_p_application_update_params_dict = wta2_p_application_update_params_instance.to_dict()
# create an instance of WTA2PApplicationUpdateParams from a dict
wta2_p_application_update_params_form_dict = wta2_p_application_update_params.from_dict(wta2_p_application_update_params_dict)