Response body for POST /v1/files
| Name | Type | Description | Notes |
|---|---|---|---|
| content_type | str | [optional] | |
| created_at | datetime | ||
| id | str | ||
| size_bytes | int | ||
| status | str |
from hotdata.models.upload_response import UploadResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UploadResponse from a JSON string
upload_response_instance = UploadResponse.from_json(json)
# print the JSON string representation of the object
print(UploadResponse.to_json())
# convert the object into a dict
upload_response_dict = upload_response_instance.to_dict()
# create an instance of UploadResponse from a dict
upload_response_from_dict = UploadResponse.from_dict(upload_response_dict)