Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.04 KB

List.md

File metadata and controls

37 lines (29 loc) · 1.04 KB

List

Properties

Name Type Description Notes
id int [optional]
created_at str [optional]
updated_at str [optional]
uuid str [optional]
name str [optional]
type str [optional]
optin str [optional]
tags List[str] [optional]
subscriber_count int [optional]

Example

from listmonk.models.list import List

# TODO update the JSON string below
json = "{}"
# create an instance of List from a JSON string
list_instance = List.from_json(json)
# print the JSON string representation of the object
print
List.to_json()

# convert the object into a dict
list_dict = list_instance.to_dict()
# create an instance of List from a dict
list_form_dict = list.from_dict(list_dict)

[Back to Model list] [Back to API list] [Back to README]