Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

CreateSweepToAddress

Information of the new sweep-to address to be created.

Properties

Name Type Description Notes
wallet_id str The wallet ID.
chain_id str The chain ID, which is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling List enabled chains.

Example

from cobo_waas2.models.create_sweep_to_address import CreateSweepToAddress

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

# convert the object into a dict
create_sweep_to_address_dict = create_sweep_to_address_instance.to_dict()
# create an instance of CreateSweepToAddress from a dict
create_sweep_to_address_from_dict = CreateSweepToAddress.from_dict(create_sweep_to_address_dict)

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