Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 829 Bytes

File metadata and controls

29 lines (20 loc) · 829 Bytes

DocumentCC

Properties

Name Type Description Notes
email_address str

Example

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)

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