Name |
Type |
Description |
Notes |
edit_url |
str |
|
[optional] |
from boldsign.models.embedded_template_edited import EmbeddedTemplateEdited
# TODO update the JSON string below
json = "{}"
# create an instance of EmbeddedTemplateEdited from a JSON string
embedded_template_edited_instance = EmbeddedTemplateEdited.from_json(json)
# print the JSON string representation of the object
print(EmbeddedTemplateEdited.to_json())
# convert the object into a dict
embedded_template_edited_dict = embedded_template_edited_instance.to_dict()
# create an instance of EmbeddedTemplateEdited from a dict
embedded_template_edited_from_dict = EmbeddedTemplateEdited.from_dict(embedded_template_edited_dict)
[Back to Model list] [Back to API list] [Back to README]