The result of the Compliance AML/Travel Rule screening.
Name | Type | Description | Notes |
---|---|---|---|
aml | List[ComplianceScreeningResult] | The end result of the AML screening. | [optional] |
tr | List[ComplianceScreeningResult] | The result of the Travel Rule screening. | [optional] |
aml_list | List[ComplianceScreeningResult] | The list of all results of the AML screening. | [optional] |
status | str | Status of compliance result screening. | [optional] |
aml_registration | List[AmlRegistrationResult] | The results of the AML address registration. | [optional] |
from fireblocks.models.compliance_result import ComplianceResult
# TODO update the JSON string below
json = "{}"
# create an instance of ComplianceResult from a JSON string
compliance_result_instance = ComplianceResult.from_json(json)
# print the JSON string representation of the object
print(ComplianceResult.to_json())
# convert the object into a dict
compliance_result_dict = compliance_result_instance.to_dict()
# create an instance of ComplianceResult from a dict
compliance_result_from_dict = ComplianceResult.from_dict(compliance_result_dict)