Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.13 KB

OptInListSource.md

File metadata and controls

36 lines (27 loc) · 1.13 KB

OptInListSource

Properties

Name Type Description Notes
id WTWalletPageViewId
list_id str
source_name str
employee_id str
merchant_id str
created_at datetime
updated_at datetime
is_active bool

Example

from wallet.models.opt_in_list_source import OptInListSource

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

# convert the object into a dict
opt_in_list_source_dict = opt_in_list_source_instance.to_dict()
# create an instance of OptInListSource from a dict
opt_in_list_source_form_dict = opt_in_list_source.from_dict(opt_in_list_source_dict)

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