The result of the Compliance AML/Travel Rule screening.
| Name | Type | Description | Notes |
|---|---|---|---|
| aml | ComplianceScreeningResultFullPayload | [optional] | |
| tr | ComplianceScreeningResultFullPayload | [optional] | |
| aml_list | List[ComplianceScreeningResultFullPayload] | The list of all results of the AML screening. | [optional] |
| status | ComplianceResultStatusesEnum | [optional] | |
| aml_registration | AmlRegistrationResultFullPayload | [optional] | |
| trlink_registration | TRLinkRegistrationResultFullPayload | [optional] | |
| trlink_destinations | List[TRLinkResultFullPayload] | The list of TRLink destination screening results. | [optional] |
from fireblocks.models.compliance_result_full_payload import ComplianceResultFullPayload
# TODO update the JSON string below
json = "{}"
# create an instance of ComplianceResultFullPayload from a JSON string
compliance_result_full_payload_instance = ComplianceResultFullPayload.from_json(json)
# print the JSON string representation of the object
print(ComplianceResultFullPayload.to_json())
# convert the object into a dict
compliance_result_full_payload_dict = compliance_result_full_payload_instance.to_dict()
# create an instance of ComplianceResultFullPayload from a dict
compliance_result_full_payload_from_dict = ComplianceResultFullPayload.from_dict(compliance_result_full_payload_dict)