| Name | Type | Description | Notes |
|---|---|---|---|
| verdict | str | ||
| execution_operation_id | str | ||
| account | Destination | ||
| asset_id | str | ||
| amount | str | ||
| matched_rule | ScreeningVerdictMatchedRule | [optional] |
from fireblocks.models.screening_verdict import ScreeningVerdict
# TODO update the JSON string below
json = "{}"
# create an instance of ScreeningVerdict from a JSON string
screening_verdict_instance = ScreeningVerdict.from_json(json)
# print the JSON string representation of the object
print(ScreeningVerdict.to_json())
# convert the object into a dict
screening_verdict_dict = screening_verdict_instance.to_dict()
# create an instance of ScreeningVerdict from a dict
screening_verdict_from_dict = ScreeningVerdict.from_dict(screening_verdict_dict)