Name | Type | Description | Notes |
---|---|---|---|
file | FilesStandardSchema |
from openapi_client.models.file_details import FileDetails
# TODO update the JSON string below
json = "{}"
# create an instance of FileDetails from a JSON string
file_details_instance = FileDetails.from_json(json)
# print the JSON string representation of the object
print(FileDetails.to_json())
# convert the object into a dict
file_details_dict = file_details_instance.to_dict()
# create an instance of FileDetails from a dict
file_details_from_dict = FileDetails.from_dict(file_details_dict)