The result of the Compliance AML/Travel Rule screening.
| Name | Type | Description | Notes |
|---|---|---|---|
| aml | ComplianceScreeningResult | [optional] | |
| tr | ComplianceScreeningResult | [optional] | |
| aml_list | List[ComplianceScreeningResult] | The list of all results of the AML screening. | [optional] |
| status | ComplianceResultStatusesEnum | [optional] | |
| aml_registration | AmlRegistrationResult | [optional] | |
| trlink_registration | TRLinkRegistrationResult | [optional] | |
| trlink_destinations | List[TRLinkResult] | The list of TRLink destination screening results. | [optional] |
from fireblocks.models.compliance_results import ComplianceResults
# TODO update the JSON string below
json = "{}"
# create an instance of ComplianceResults from a JSON string
compliance_results_instance = ComplianceResults.from_json(json)
# print the JSON string representation of the object
print(ComplianceResults.to_json())
# convert the object into a dict
compliance_results_dict = compliance_results_instance.to_dict()
# create an instance of ComplianceResults from a dict
compliance_results_from_dict = ComplianceResults.from_dict(compliance_results_dict)