| Name | Type | Description | Notes |
|---|---|---|---|
| phone_number_id | str | ||
| payment_object_prefix | PickWTPaymentObjectBroadcastExcludeKeyofWTPaymentObjectBroadcastListTypeOrListIDPaymentObjectPrefix | ||
| payment_object_id | str | ||
| message_template | str | ||
| media_urls | List[str] | ||
| employee_id | str | ||
| broadcast_scheduled_at | datetime | ||
| id | WTWalletPageViewId | ||
| merchant_id | str | ||
| created_at | datetime | ||
| updated_at | datetime | ||
| is_active | bool | ||
| broadcast_status | PickWTPaymentObjectBroadcastExcludeKeyofWTPaymentObjectBroadcastListTypeOrListIDBroadcastStatus | ||
| broadcast_queued_at | datetime | ||
| broadcast_started_at | datetime | ||
| broadcast_completed_at | datetime | ||
| list_type | DynamicVoucherBroadcastListType | ||
| list_id | str | ||
| opt_in_list | WTOptInList | [optional] | |
| imported_list | WTImportedList | [optional] |
from wallet.models.simple_sms_broadcast import SimpleSMSBroadcast
# TODO update the JSON string below
json = "{}"
# create an instance of SimpleSMSBroadcast from a JSON string
simple_sms_broadcast_instance = SimpleSMSBroadcast.from_json(json)
# print the JSON string representation of the object
print SimpleSMSBroadcast.to_json()
# convert the object into a dict
simple_sms_broadcast_dict = simple_sms_broadcast_instance.to_dict()
# create an instance of SimpleSMSBroadcast from a dict
simple_sms_broadcast_form_dict = simple_sms_broadcast.from_dict(simple_sms_broadcast_dict)