Name |
Type |
Description |
Notes |
campaign |
int |
Campaign foreign key |
|
description |
str |
|
[optional] |
name |
str |
|
|
from callchimp.models.lists_request import ListsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ListsRequest from a JSON string
lists_request_instance = ListsRequest.from_json(json)
# print the JSON string representation of the object
print(ListsRequest.to_json())
# convert the object into a dict
lists_request_dict = lists_request_instance.to_dict()
# create an instance of ListsRequest from a dict
lists_request_from_dict = ListsRequest.from_dict(lists_request_dict)
[Back to Model list] [Back to API list] [Back to README]