| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | List name |
from sendx_python_sdk.models.rest_e_list import RestEList
# TODO update the JSON string below
json = "{}"
# create an instance of RestEList from a JSON string
rest_e_list_instance = RestEList.from_json(json)
# print the JSON string representation of the object
print(RestEList.to_json())
# convert the object into a dict
rest_e_list_dict = rest_e_list_instance.to_dict()
# create an instance of RestEList from a dict
rest_e_list_from_dict = RestEList.from_dict(rest_e_list_dict)