You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Number of decimals in the transaction asset. This is used to convert the transaction amount to the smallest unit of the asset
[optional]
originator_vas_pdid
str
This is the identifier assigned to your VASP
originator_equals_beneficiary
bool
"True" if the originator and beneficiary is the same person and you therefore do not need to collect any information. "False" if it is a third-party transfer.
travel_rule_behavior
bool
This will also check if the transaction is a TRAVEL_RULE in the beneficiary VASP's jurisdiction
[optional]
beneficiary_vas_pdid
str
This is the identifier assigned to the VASP the funds are being sent to
fromfireblocks.models.travel_rule_validate_transaction_requestimportTravelRuleValidateTransactionRequest# TODO update the JSON string belowjson="{}"# create an instance of TravelRuleValidateTransactionRequest from a JSON stringtravel_rule_validate_transaction_request_instance=TravelRuleValidateTransactionRequest.from_json(json)
# print the JSON string representation of the objectprint(TravelRuleValidateTransactionRequest.to_json())
# convert the object into a dicttravel_rule_validate_transaction_request_dict=travel_rule_validate_transaction_request_instance.to_dict()
# create an instance of TravelRuleValidateTransactionRequest from a dicttravel_rule_validate_transaction_request_from_dict=TravelRuleValidateTransactionRequest.from_dict(travel_rule_validate_transaction_request_dict)