| Name |
Type |
Description |
Notes |
| delete_custom_files |
bool |
|
[optional] |
| expires_in |
int |
|
[optional] |
| metadata |
object |
|
[optional] |
| password |
str |
|
[optional] |
| source_pdfs |
List[object] |
|
|
| test |
bool |
|
[optional] |
from docspring.models.combine_pdfs_data import CombinePdfsData
# TODO update the JSON string below
json = "{}"
# create an instance of CombinePdfsData from a JSON string
combine_pdfs_data_instance = CombinePdfsData.from_json(json)
# print the JSON string representation of the object
print(CombinePdfsData.to_json())
# convert the object into a dict
combine_pdfs_data_dict = combine_pdfs_data_instance.to_dict()
# create an instance of CombinePdfsData from a dict
combine_pdfs_data_from_dict = CombinePdfsData.from_dict(combine_pdfs_data_dict)
[Back to Model list] [Back to API list] [Back to README]