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
The ID of the travel rule message from any travel rule provider. Used for travel rule supporting functionality to associate transactions with existing travel rule messages.
[optional]
customer_ref_id
str
The ID for AML providers to associate the owner of funds with transactions.
[optional]
Example
fromfireblocks.models.transaction_request_destinationimportTransactionRequestDestination# TODO update the JSON string belowjson="{}"# create an instance of TransactionRequestDestination from a JSON stringtransaction_request_destination_instance=TransactionRequestDestination.from_json(json)
# print the JSON string representation of the objectprint(TransactionRequestDestination.to_json())
# convert the object into a dicttransaction_request_destination_dict=transaction_request_destination_instance.to_dict()
# create an instance of TransactionRequestDestination from a dicttransaction_request_destination_from_dict=TransactionRequestDestination.from_dict(transaction_request_destination_dict)