Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.71 KB

File metadata and controls

33 lines (24 loc) · 1.71 KB

OperationCryptoScanMetadataCryptoScanResult

Properties

Name Type Description Notes
done bool Whether the operation has reached a terminal state.
error Status Failure detail, populated only when done is true and the operation failed. [optional]
metadata CryptoScanMetadata In-flight information and details. [optional]
name str API resource name.
response CryptoScanResult Result, set only when done is true and the operation succeeded. [optional]

Example

from revengai.models.operation_crypto_scan_metadata_crypto_scan_result import OperationCryptoScanMetadataCryptoScanResult

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

# convert the object into a dict
operation_crypto_scan_metadata_crypto_scan_result_dict = operation_crypto_scan_metadata_crypto_scan_result_instance.to_dict()
# create an instance of OperationCryptoScanMetadataCryptoScanResult from a dict
operation_crypto_scan_metadata_crypto_scan_result_from_dict = OperationCryptoScanMetadataCryptoScanResult.from_dict(operation_crypto_scan_metadata_crypto_scan_result_dict)

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