Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 2.08 KB

File metadata and controls

49 lines (40 loc) · 2.08 KB

DynamicVoucherBroadcast

Properties

Name Type Description Notes
phone_number_id str
payment_object_prefix StaticVoucherCampaignBroadcastPaymentObjectPrefix
payment_object_id str
message_template object
media_urls object
employee_id str
broadcast_scheduled_at object
id StaticVoucherId
merchant_id str
created_at object
updated_at object
is_active object
broadcast_status StaticVoucherCampaignBroadcastBroadcastStatus
broadcast_queued_at object
broadcast_started_at object
broadcast_completed_at object
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]