Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.36 KB

File metadata and controls

31 lines (22 loc) · 1.36 KB

CreateDestinationEntryRequest

Properties

Name Type Description Notes
destination_id str The destination ID.
wallet_addresses List[CreateWalletAddress] The wallet addresses of the destination. [optional]
bank_accounts List[CreateDestinationBankAccount] The bank accounts of the destination. [optional]

Example

from cobo_waas2.models.create_destination_entry_request import CreateDestinationEntryRequest

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

# convert the object into a dict
create_destination_entry_request_dict = create_destination_entry_request_instance.to_dict()
# create an instance of CreateDestinationEntryRequest from a dict
create_destination_entry_request_from_dict = CreateDestinationEntryRequest.from_dict(create_destination_entry_request_dict)

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