Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 997 Bytes

File metadata and controls

29 lines (20 loc) · 997 Bytes

EmbeddedDocumentEdited

Properties

Name Type Description Notes
edit_url str [optional]

Example

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]