Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.66 KB

File metadata and controls

36 lines (27 loc) · 1.66 KB

ComplianceResults

The result of the Compliance AML/Travel Rule screening.

Properties

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]

Example

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)

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