Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 939 Bytes

ListsRequest.md

File metadata and controls

31 lines (22 loc) · 939 Bytes

ListsRequest

Properties

Name Type Description Notes
campaign int Campaign foreign key
description str [optional]
name str

Example

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]