Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

ScreeningVerdict.md

File metadata and controls

34 lines (25 loc) · 1.13 KB

ScreeningVerdict

Properties

Name Type Description Notes
verdict str
execution_operation_id str
account Destination
asset_id str
amount str
matched_rule ScreeningVerdictMatchedRule [optional]

Example

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)

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