Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.52 KB

ComplianceResult.md

File metadata and controls

34 lines (25 loc) · 1.52 KB

ComplianceResult

The result of the Compliance AML/Travel Rule screening.

Properties

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]

Example

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)

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