| Name | Type | Description | Notes |
|---|---|---|---|
| template_id | str | [optional] |
from boldsign.models.template_created import TemplateCreated
# TODO update the JSON string below
json = "{}"
# create an instance of TemplateCreated from a JSON string
template_created_instance = TemplateCreated.from_json(json)
# print the JSON string representation of the object
print(TemplateCreated.to_json())
# convert the object into a dict
template_created_dict = template_created_instance.to_dict()
# create an instance of TemplateCreated from a dict
template_created_from_dict = TemplateCreated.from_dict(template_created_dict)