Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 843 Bytes

File metadata and controls

30 lines (21 loc) · 843 Bytes

CustomFile

Properties

Name Type Description Notes
id str
url str

Example

from docspring.models.custom_file import CustomFile

# TODO update the JSON string below
json = "{}"
# create an instance of CustomFile from a JSON string
custom_file_instance = CustomFile.from_json(json)
# print the JSON string representation of the object
print(CustomFile.to_json())

# convert the object into a dict
custom_file_dict = custom_file_instance.to_dict()
# create an instance of CustomFile from a dict
custom_file_from_dict = CustomFile.from_dict(custom_file_dict)

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