Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 903 Bytes

File metadata and controls

29 lines (20 loc) · 903 Bytes

DocumentCreated

Properties

Name Type Description Notes
document_id str [optional]

Example

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)

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