The travel rule configuration that was matched
| 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] |
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)