| Name | Type | Description | Notes |
|---|---|---|---|
| document_id | str | [optional] | |
| sender_detail | DocumentSenderDetail | [optional] | |
| cc_details | List[DocumentCcDetails] | [optional] | |
| created_date | int | [optional] | |
| activity_date | int | [optional] | |
| activity_by | str | [optional] | |
| message_title | str | [optional] | |
| status | str | [optional] | |
| signer_details | List[DocumentSignerDetails] | [optional] | |
| expiry_date | int | [optional] | |
| enable_signing_order | bool | [optional] | |
| is_deleted | bool | [optional] | |
| labels | List[str] | [optional] | |
| cursor | int | [optional] | |
| brand_id | str | [optional] | |
| scheduled_send_time | int | [optional] | |
| in_editing_mode | bool | [optional] | |
| display_status | str | [optional] |
from boldsign.models.document import Document
# TODO update the JSON string below
json = "{}"
# create an instance of Document from a JSON string
document_instance = Document.from_json(json)
# print the JSON string representation of the object
print(Document.to_json())
# convert the object into a dict
document_dict = document_instance.to_dict()
# create an instance of Document from a dict
document_from_dict = Document.from_dict(document_dict)