| Name | Type | Description | Notes |
|---|---|---|---|
| sha_256_hash | str | ||
| file_type | UploadFileType | ||
| filename | str |
from revengai.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)