Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 967 Bytes

File metadata and controls

29 lines (20 loc) · 967 Bytes

CreateCustomFileData

Properties

Name Type Description Notes
cache_id str

Example

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]