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 Decentralized Identifier (DID) of the exchange (VASP) that is sending the virtual assets. This identifier is unique to the exchange and is generated when the exchange's account is created in the Notabene network.
[optional]
beneficiary_vas_pdid
str
The Decentralized Identifier (DID) of the exchange (VASP) that is receiving the virtual assets. This identifier is unique to the exchange and is generated when the exchange's account is created in the Notabene network.
[optional]
originator_vas_pname
str
The name of the VASP acting as the transaction originator.
[optional]
beneficiary_vas_pname
str
The name of the VASP acting as the transaction beneficiary.
[optional]
beneficiary_vas_pwebsite
str
The website of the VASP acting as the transaction beneficiary.
The Decentralized Identifier (DID) of the person at the receiving exchange (VASP). This identifier is generated when the customer is registered in the Notabene network, or automatically created based on the `beneficiaryRef`. - If neither `beneficiaryRef` nor `beneficiaryDid` is provided in the `txCreate` payload, a new random DID is generated for every transaction.
[optional]
originator_did
str
The Decentralized Identifier (DID) of the person at the exchange (VASP) who is requesting the withdrawal. This identifier is generated when the customer is registered in the Notabene network or automatically created based on the `originatorRef`. - If neither `originatorRef` nor `originatorDid` is provided in the `txCreate` payload, a new random DID is generated for every transaction.
[optional]
is_non_custodial
bool
Indicates if the transaction involves a non-custodial wallet.
[optional]
Example
fromfireblocks.models.travel_rule_create_transaction_requestimportTravelRuleCreateTransactionRequest# TODO update the JSON string belowjson="{}"# create an instance of TravelRuleCreateTransactionRequest from a JSON stringtravel_rule_create_transaction_request_instance=TravelRuleCreateTransactionRequest.from_json(json)
# print the JSON string representation of the objectprint(TravelRuleCreateTransactionRequest.to_json())
# convert the object into a dicttravel_rule_create_transaction_request_dict=travel_rule_create_transaction_request_instance.to_dict()
# create an instance of TravelRuleCreateTransactionRequest from a dicttravel_rule_create_transaction_request_from_dict=TravelRuleCreateTransactionRequest.from_dict(travel_rule_create_transaction_request_dict)