Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 2.66 KB

File metadata and controls

52 lines (43 loc) · 2.66 KB

TRLinkMissingTrmDecision

Interface for reporting missing TRM screening decisions in ITRLinkResult

Properties

Name Type Description Notes
customer_id str Reference to TrlinkCustomer.id [optional]
direction TransactionDirection [optional]
source_type TransferPeerTypeEnum [optional]
source_sub_type TransferPeerSubTypeEnum [optional]
source_address str Source address [optional]
dest_type TransferPeerTypeEnum [optional]
dest_sub_type TransferPeerSubTypeEnum [optional]
dest_address str Destination address [optional]
source_id str Source ID [optional]
dest_id str Destination ID [optional]
asset str Asset symbol [optional]
base_asset str Base asset symbol [optional]
amount TRLinkAmount [optional]
network_protocol str Network protocol [optional]
operation TransactionOperationEnum [optional]
description str Rule description [optional]
is_default bool Whether this is a default rule [optional] [default to False]
valid_before float Unix timestamp when rule expires [optional]
valid_after float Unix timestamp when rule becomes valid [optional]
action TRLinkMissingTrmAction
source str TRLink missing TRM source
timestamp datetime Timestamp of the decision [optional]
reason str Reason for the decision [optional]

Example

from fireblocks.models.tr_link_missing_trm_decision import TRLinkMissingTrmDecision

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

# convert the object into a dict
tr_link_missing_trm_decision_dict = tr_link_missing_trm_decision_instance.to_dict()
# create an instance of TRLinkMissingTrmDecision from a dict
tr_link_missing_trm_decision_from_dict = TRLinkMissingTrmDecision.from_dict(tr_link_missing_trm_decision_dict)

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