| Name | Type | Description | Notes |
|---|---|---|---|
| page_details | PageDetails | [optional] | |
| result | List[Document] | [optional] |
from boldsign.models.document_records import DocumentRecords
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentRecords from a JSON string
document_records_instance = DocumentRecords.from_json(json)
# print the JSON string representation of the object
print(DocumentRecords.to_json())
# convert the object into a dict
document_records_dict = document_records_instance.to_dict()
# create an instance of DocumentRecords from a dict
document_records_from_dict = DocumentRecords.from_dict(document_records_dict)