Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1014 Bytes

File metadata and controls

36 lines (27 loc) · 1014 Bytes

FileHashes

Properties

Name Type Description Notes
md5 str
sha1 str
sha256 str
sha512 str
sha3_224 str
sha3_256 str
sha3_384 str
sha3_512 str

Example

from revengai.models.file_hashes import FileHashes

# TODO update the JSON string below
json = "{}"
# create an instance of FileHashes from a JSON string
file_hashes_instance = FileHashes.from_json(json)
# print the JSON string representation of the object
print(FileHashes.to_json())

# convert the object into a dict
file_hashes_dict = file_hashes_instance.to_dict()
# create an instance of FileHashes from a dict
file_hashes_from_dict = FileHashes.from_dict(file_hashes_dict)

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