The result of the AML screening.
Name | Type | Description | Notes |
---|---|---|---|
provider | str | [optional] | |
payload | object | [optional] |
from fireblocks.models.aml_screening_result import AmlScreeningResult
# TODO update the JSON string below
json = "{}"
# create an instance of AmlScreeningResult from a JSON string
aml_screening_result_instance = AmlScreeningResult.from_json(json)
# print the JSON string representation of the object
print(AmlScreeningResult.to_json())
# convert the object into a dict
aml_screening_result_dict = aml_screening_result_instance.to_dict()
# create an instance of AmlScreeningResult from a dict
aml_screening_result_from_dict = AmlScreeningResult.from_dict(aml_screening_result_dict)