Name |
Type |
Description |
Notes |
template_id |
str |
|
[optional] |
create_url |
str |
|
[optional] |
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]