Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.41 KB

File metadata and controls

47 lines (38 loc) · 2.41 KB

ScreeningTRLinkPrescreeningRule

TRLink pre-screening rule definition

Properties

Name Type Description Notes
customer_id str Reference to TRLinkCustomer.id [optional]
direction TravelRuleDirectionEnum [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 ScreeningTRLinkAmount [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]
action TRLinkPreScreeningActionEnum

Example

from fireblocks.models.screening_tr_link_prescreening_rule import ScreeningTRLinkPrescreeningRule

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

# convert the object into a dict
screening_tr_link_prescreening_rule_dict = screening_tr_link_prescreening_rule_instance.to_dict()
# create an instance of ScreeningTRLinkPrescreeningRule from a dict
screening_tr_link_prescreening_rule_from_dict = ScreeningTRLinkPrescreeningRule.from_dict(screening_tr_link_prescreening_rule_dict)

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