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.travel_rule_matched_rule import TravelRuleMatchedRule
# TODO update the JSON string below
json = "{}"
# create an instance of TravelRuleMatchedRule from a JSON string
travel_rule_matched_rule_instance = TravelRuleMatchedRule.from_json(json)
# print the JSON string representation of the object
print(TravelRuleMatchedRule.to_json())
# convert the object into a dict
travel_rule_matched_rule_dict = travel_rule_matched_rule_instance.to_dict()
# create an instance of TravelRuleMatchedRule from a dict
travel_rule_matched_rule_from_dict = TravelRuleMatchedRule.from_dict(travel_rule_matched_rule_dict)