Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.07 KB

File metadata and controls

35 lines (26 loc) · 1.07 KB

UploadResponse

Properties

Name Type Description Notes
sha_256_hash str
file_type UploadFileType
filename str
mime str
is_archive bool
can_sandbox bool
can_extract bool

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]