Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 885 Bytes

File metadata and controls

29 lines (20 loc) · 885 Bytes

DocumentEdited

Properties

Name Type Description Notes
status str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]