| Name | Type | Description | Notes |
|---|---|---|---|
| email_address | str |
from boldsign.models.document_cc import DocumentCC
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentCC from a JSON string
document_cc_instance = DocumentCC.from_json(json)
# print the JSON string representation of the object
print(DocumentCC.to_json())
# convert the object into a dict
document_cc_dict = document_cc_instance.to_dict()
# create an instance of DocumentCC from a dict
document_cc_from_dict = DocumentCC.from_dict(document_cc_dict)