| Name | Type | Description | Notes |
|---|---|---|---|
| md5 | str | ||
| sha1 | str | ||
| sha256 | str | ||
| sha512 | str | ||
| sha3_224 | str | ||
| sha3_256 | str | ||
| sha3_384 | str | ||
| sha3_512 | str |
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)