Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

File metadata and controls

32 lines (23 loc) · 1.25 KB

SweepToAddress

Information about the sweep-to address.

Properties

Name Type Description Notes
address str The wallet address.
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.
status SweepToAddressStatus [optional]

Example

from cobo_waas2.models.sweep_to_address import SweepToAddress

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

# convert the object into a dict
sweep_to_address_dict = sweep_to_address_instance.to_dict()
# create an instance of SweepToAddress from a dict
sweep_to_address_from_dict = SweepToAddress.from_dict(sweep_to_address_dict)

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