Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 2.29 KB

File metadata and controls

49 lines (40 loc) · 2.29 KB

DynamicVoucherBroadcast

Properties

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]
dynamic_voucher DynamicVoucher

Example

from wallet.models.dynamic_voucher_broadcast import DynamicVoucherBroadcast

# TODO update the JSON string below
json = "{}"
# create an instance of DynamicVoucherBroadcast from a JSON string
dynamic_voucher_broadcast_instance = DynamicVoucherBroadcast.from_json(json)
# print the JSON string representation of the object
print DynamicVoucherBroadcast.to_json()

# convert the object into a dict
dynamic_voucher_broadcast_dict = dynamic_voucher_broadcast_instance.to_dict()
# create an instance of DynamicVoucherBroadcast from a dict
dynamic_voucher_broadcast_form_dict = dynamic_voucher_broadcast.from_dict(dynamic_voucher_broadcast_dict)

[Back to Model list] [Back to API list] [Back to README]