Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.12 KB

File metadata and controls

36 lines (27 loc) · 1.12 KB

WTImportedList

Properties

Name Type Description Notes
employee_id str
is_active bool
list_name str
phone_number_id str
id WTWalletPageViewId
merchant_id str
created_at datetime
updated_at datetime

Example

from wallet.models.wt_imported_list import WTImportedList

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

# convert the object into a dict
wt_imported_list_dict = wt_imported_list_instance.to_dict()
# create an instance of WTImportedList from a dict
wt_imported_list_form_dict = wt_imported_list.from_dict(wt_imported_list_dict)

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