Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 971 Bytes

File metadata and controls

31 lines (22 loc) · 971 Bytes

UploadResponse

Properties

Name Type Description Notes
sha_256_hash str
file_type UploadFileType
filename str

Example

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)

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