Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

WTSMSImportedListCreate

Properties

Name Type Description Notes
phone_number_id str
is_active bool
list_name str

Example

from wallet.models.wtsms_imported_list_create import WTSMSImportedListCreate

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

# convert the object into a dict
wtsms_imported_list_create_dict = wtsms_imported_list_create_instance.to_dict()
# create an instance of WTSMSImportedListCreate from a dict
wtsms_imported_list_create_form_dict = wtsms_imported_list_create.from_dict(wtsms_imported_list_create_dict)

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