Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.58 KB

File metadata and controls

33 lines (24 loc) · 1.58 KB

TravelRuleWithdrawExchangesOrVASP

Required information when withdrawing tokens to an exchange or other virtual asset service providers (VASP).

Properties

Name Type Description Notes
destination_wallet_type DestinationWalletType
vendor_code str The vendor code of the exchange or virtual asset service provider (VASP).
vendor_vasp_id str The unique identifier of the VASP.
entity_info TravelRuleWithdrawExchangesOrVASPEntityInfo

Example

from cobo_waas2.models.travel_rule_withdraw_exchanges_or_vasp import TravelRuleWithdrawExchangesOrVASP

# TODO update the JSON string below
json = "{}"
# create an instance of TravelRuleWithdrawExchangesOrVASP from a JSON string
travel_rule_withdraw_exchanges_or_vasp_instance = TravelRuleWithdrawExchangesOrVASP.from_json(json)
# print the JSON string representation of the object
print(TravelRuleWithdrawExchangesOrVASP.to_json())

# convert the object into a dict
travel_rule_withdraw_exchanges_or_vasp_dict = travel_rule_withdraw_exchanges_or_vasp_instance.to_dict()
# create an instance of TravelRuleWithdrawExchangesOrVASP from a dict
travel_rule_withdraw_exchanges_or_vasp_from_dict = TravelRuleWithdrawExchangesOrVASP.from_dict(travel_rule_withdraw_exchanges_or_vasp_dict)

[Back to Model list] [Back to API list] [Back to README]