| Name |
Type |
Description |
Notes |
| added_at |
datetime |
|
[optional] |
| campaign |
int |
|
[optional] |
| description |
str |
|
[optional] |
| id |
int |
|
[optional] |
| isactive |
bool |
|
[optional] |
| isauto |
bool |
|
[optional] |
| name |
str |
|
[optional] |
| organization |
int |
|
[optional] |
from callchimp.models.lists_response import ListsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListsResponse from a JSON string
lists_response_instance = ListsResponse.from_json(json)
# print the JSON string representation of the object
print(ListsResponse.to_json())
# convert the object into a dict
lists_response_dict = lists_response_instance.to_dict()
# create an instance of ListsResponse from a dict
lists_response_from_dict = ListsResponse.from_dict(lists_response_dict)
[Back to Model list] [Back to API list] [Back to README]