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