Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.13 KB

ListsResponse.md

File metadata and controls

36 lines (27 loc) · 1.13 KB

ListsResponse

Properties

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]

Example

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]