Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

EmbeddedTemplateCreated.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

EmbeddedTemplateCreated

Properties

Name Type Description Notes
template_id str [optional]
create_url str [optional]

Example

from boldsign.models.embedded_template_created import EmbeddedTemplateCreated

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

# convert the object into a dict
embedded_template_created_dict = embedded_template_created_instance.to_dict()
# create an instance of EmbeddedTemplateCreated from a dict
embedded_template_created_from_dict = EmbeddedTemplateCreated.from_dict(embedded_template_created_dict)

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