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

NameTypeDescriptionNotes
md5str
sha1str
sha256str
sha512str
sha3_224str
sha3_256str
sha3_384str
sha3_512str

Example

fromrevengai.models.file_hashesimportFileHashes# TODO update the JSON string belowjson="{}"# create an instance of FileHashes from a JSON stringfile_hashes_instance=FileHashes.from_json(json)
# print the JSON string representation of the objectprint(FileHashes.to_json())
# convert the object into a dictfile_hashes_dict=file_hashes_instance.to_dict()
# create an instance of FileHashes from a dictfile_hashes_from_dict=FileHashes.from_dict(file_hashes_dict)

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