Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.52 KB

File metadata and controls

35 lines (26 loc) · 1.52 KB

ScreeningTravelRuleMatchedRule

The travel rule configuration that was matched

Properties

Name Type Description Notes
direction TravelRuleDirectionEnum [optional]
status TravelRuleStatusEnum [optional]
amount_usd float Amount in USD [optional]
amount float Amount in base currency [optional]
asset str Asset identifier [optional]
action TravelRuleVerdictEnum [optional]

Example

from fireblocks.models.screening_travel_rule_matched_rule import ScreeningTravelRuleMatchedRule

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

# convert the object into a dict
screening_travel_rule_matched_rule_dict = screening_travel_rule_matched_rule_instance.to_dict()
# create an instance of ScreeningTravelRuleMatchedRule from a dict
screening_travel_rule_matched_rule_from_dict = ScreeningTravelRuleMatchedRule.from_dict(screening_travel_rule_matched_rule_dict)

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