Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 906 Bytes

NewList.md

File metadata and controls

32 lines (24 loc) · 906 Bytes

NewList

Properties

Name Type Description Notes
name str [optional]
type str [optional]
optin str [optional]
tags List[str] [optional]

Example

from listmonk.models.new_list import NewList

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

# convert the object into a dict
new_list_dict = new_list_instance.to_dict()
# create an instance of NewList from a dict
new_list_form_dict = new_list.from_dict(new_list_dict)

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