Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.34 KB

ComplianceScreeningResult.md

File metadata and controls

33 lines (24 loc) · 1.34 KB

ComplianceScreeningResult

Properties

Name Type Description Notes
provider str [optional]
payload object The payload of the screening result. The payload is a JSON object that contains the screening result. The payload is different for each screening provider. [optional]
bypass_reason str [optional]
screening_status str [optional]
timestamp float [optional]

Example

from fireblocks.models.compliance_screening_result import ComplianceScreeningResult

# TODO update the JSON string below
json = "{}"
# create an instance of ComplianceScreeningResult from a JSON string
compliance_screening_result_instance = ComplianceScreeningResult.from_json(json)
# print the JSON string representation of the object
print(ComplianceScreeningResult.to_json())

# convert the object into a dict
compliance_screening_result_dict = compliance_screening_result_instance.to_dict()
# create an instance of ComplianceScreeningResult from a dict
compliance_screening_result_from_dict = ComplianceScreeningResult.from_dict(compliance_screening_result_dict)

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