| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| url | str |
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)