| Name | Type | Description | Notes |
|---|---|---|---|
| status | str | [optional] |
from boldsign.models.document_edited import DocumentEdited
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentEdited from a JSON string
document_edited_instance = DocumentEdited.from_json(json)
# print the JSON string representation of the object
print(DocumentEdited.to_json())
# convert the object into a dict
document_edited_dict = document_edited_instance.to_dict()
# create an instance of DocumentEdited from a dict
document_edited_from_dict = DocumentEdited.from_dict(document_edited_dict)