Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.18 KB

File metadata and controls

43 lines (34 loc) · 2.18 KB

TRLinkResultFullPayload

TRLink screening result

Properties

Name Type Description Notes
provider str The TRLink provider name
timestamp float Unix timestamp of the screening result
status str Status of the TRLink screening
verdict TRLinkVerdictEnum [optional]
dest_address str The destination address associated with the TRLink screening [optional]
dest_tag str Destination tag for the screening [optional]
bypass_reason str Reason for bypassing the TRLink screening [optional]
details_message str Additional details message about the screening result [optional]
customer_integration_id str Customer integration identifier [optional]
customer_short_name str Customer short name [optional]
travel_rule_message_id str Travel rule message identifier for linking [optional]
result TRLinkProviderResultWithRule2 [optional]
matched_prescreening_rule ScreeningTRLinkPrescreeningRule [optional]
matched_no_trm_screening_rule ScreeningTRLinkMissingTrmDecision [optional]

Example

from fireblocks.models.tr_link_result_full_payload import TRLinkResultFullPayload

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

# convert the object into a dict
tr_link_result_full_payload_dict = tr_link_result_full_payload_instance.to_dict()
# create an instance of TRLinkResultFullPayload from a dict
tr_link_result_full_payload_from_dict = TRLinkResultFullPayload.from_dict(tr_link_result_full_payload_dict)

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