Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.01 KB

Template.md

File metadata and controls

35 lines (27 loc) · 1.01 KB

Template

Properties

Name Type Description Notes
id int [optional]
created_at str [optional]
updated_at str [optional]
name str [optional]
body str [optional]
type str [optional]
is_default bool [optional]

Example

from listmonk.models.template import Template

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

# convert the object into a dict
template_dict = template_instance.to_dict()
# create an instance of Template from a dict
template_form_dict = template.from_dict(template_dict)

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