You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromfireblocks.models.compliance_screening_result_full_payloadimportComplianceScreeningResultFullPayload# TODO update the JSON string belowjson="{}"# create an instance of ComplianceScreeningResultFullPayload from a JSON stringcompliance_screening_result_full_payload_instance=ComplianceScreeningResultFullPayload.from_json(json)
# print the JSON string representation of the objectprint(ComplianceScreeningResultFullPayload.to_json())
# convert the object into a dictcompliance_screening_result_full_payload_dict=compliance_screening_result_full_payload_instance.to_dict()
# create an instance of ComplianceScreeningResultFullPayload from a dictcompliance_screening_result_full_payload_from_dict=ComplianceScreeningResultFullPayload.from_dict(compliance_screening_result_full_payload_dict)