Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 993 Bytes

File metadata and controls

31 lines (22 loc) · 993 Bytes

StakingSource

Properties

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

Example

from cobo_waas2.models.staking_source import StakingSource

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

# convert the object into a dict
staking_source_dict = staking_source_instance.to_dict()
# create an instance of StakingSource from a dict
staking_source_from_dict = StakingSource.from_dict(staking_source_dict)

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