| Name |
Type |
Description |
Notes |
| cache_id |
str |
|
|
from docspring.models.create_custom_file_data import CreateCustomFileData
# TODO update the JSON string below
json = "{}"
# create an instance of CreateCustomFileData from a JSON string
create_custom_file_data_instance = CreateCustomFileData.from_json(json)
# print the JSON string representation of the object
print(CreateCustomFileData.to_json())
# convert the object into a dict
create_custom_file_data_dict = create_custom_file_data_instance.to_dict()
# create an instance of CreateCustomFileData from a dict
create_custom_file_data_from_dict = CreateCustomFileData.from_dict(create_custom_file_data_dict)
[Back to Model list] [Back to API list] [Back to README]