| Name | Type | Description | Notes |
|---|---|---|---|
| document_id | str | [optional] |
from boldsign.models.document_created import DocumentCreated
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentCreated from a JSON string
document_created_instance = DocumentCreated.from_json(json)
# print the JSON string representation of the object
print(DocumentCreated.to_json())
# convert the object into a dict
document_created_dict = document_created_instance.to_dict()
# create an instance of DocumentCreated from a dict
document_created_from_dict = DocumentCreated.from_dict(document_created_dict)