Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.59 KB

File metadata and controls

43 lines (34 loc) · 1.59 KB

OptInListSubscriber

Properties

Name Type Description Notes
caller_name object [optional]
caller_type object [optional]
opt_in_list_id str
opt_in_source_id OptInListSubscriberOptInSourceID
is_subscribed object
is_pending_age21_verification object
mobile_phone_number object
referring_url object
id StaticVoucherId
merchant_id str
created_at object
updated_at object
is_active object
opted_status object [optional]
source SSOptInSource [optional]

Example

from wallet.models.opt_in_list_subscriber import OptInListSubscriber

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

# convert the object into a dict
opt_in_list_subscriber_dict = opt_in_list_subscriber_instance.to_dict()
# create an instance of OptInListSubscriber from a dict
opt_in_list_subscriber_form_dict = opt_in_list_subscriber.from_dict(opt_in_list_subscriber_dict)

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