Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

CryptoScanMetadata

Properties

Name Type Description Notes
log_history List[List[object]] Progress messages the run recorded, oldest first. [optional]
status str Run status. UNINITIALISED means the agent has never been triggered for this analysis.

Example

from revengai.models.crypto_scan_metadata import CryptoScanMetadata

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

# convert the object into a dict
crypto_scan_metadata_dict = crypto_scan_metadata_instance.to_dict()
# create an instance of CryptoScanMetadata from a dict
crypto_scan_metadata_from_dict = CryptoScanMetadata.from_dict(crypto_scan_metadata_dict)

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