Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

BaseStakeSource

The information about the staking source.

Properties

Name Type Description Notes
source_type StakeSourceType
wallet_id str The wallet ID.
address str The wallet address.

Example

from cobo_waas2.models.base_stake_source import BaseStakeSource

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

# convert the object into a dict
base_stake_source_dict = base_stake_source_instance.to_dict()
# create an instance of BaseStakeSource from a dict
base_stake_source_from_dict = BaseStakeSource.from_dict(base_stake_source_dict)

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