| Name |
Type |
Description |
Notes |
| employee_id |
str |
|
|
| is_active |
bool |
|
|
| list_name |
str |
|
|
| phone_number_id |
str |
|
|
| estimated_messages_per_month |
int |
|
|
| opt_in_keyword |
str |
|
|
| opt_out_keyword |
str |
|
|
| opt_in_confirmed_response |
str |
|
|
| opt_out_confirmed_response |
str |
|
|
| opt_in_confirmed_customer_receives |
str |
|
|
| opt_out_confirmed_customer_receives |
str |
|
|
| opt_in_confirmed_media_urls |
List[str] |
|
|
| opt_out_confirmed_media_urls |
List[str] |
|
|
| is_over21_required |
bool |
|
|
| id |
WTWalletPageViewId |
|
|
| merchant_id |
str |
|
|
| created_at |
datetime |
|
|
| updated_at |
datetime |
|
|
from wallet.models.wt_opt_in_list import WTOptInList
# TODO update the JSON string below
json = "{}"
# create an instance of WTOptInList from a JSON string
wt_opt_in_list_instance = WTOptInList.from_json(json)
# print the JSON string representation of the object
print WTOptInList.to_json()
# convert the object into a dict
wt_opt_in_list_dict = wt_opt_in_list_instance.to_dict()
# create an instance of WTOptInList from a dict
wt_opt_in_list_form_dict = wt_opt_in_list.from_dict(wt_opt_in_list_dict)
[Back to Model list] [Back to API list] [Back to README]