Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

File metadata and controls

31 lines (22 loc) · 1.39 KB

CreateDestinationEntry201Response

Properties

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

Example

from cobo_waas2.models.create_destination_entry201_response import CreateDestinationEntry201Response

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

# convert the object into a dict
create_destination_entry201_response_dict = create_destination_entry201_response_instance.to_dict()
# create an instance of CreateDestinationEntry201Response from a dict
create_destination_entry201_response_from_dict = CreateDestinationEntry201Response.from_dict(create_destination_entry201_response_dict)

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