Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 903 Bytes

File metadata and controls

29 lines (20 loc) · 903 Bytes

TemplateCreated

Properties

Name Type Description Notes
template_id str [optional]

Example

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)

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