Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

BabylonStakeEstimatedFee

Properties

Name Type Description Notes
pool_type StakingPoolType [optional]
fee_type FeeType [optional]
fee_amount str The amount of the estimated fee. [optional]
token_id str The token ID of the staking fee. [optional]

Example

from cobo_waas2.models.babylon_stake_estimated_fee import BabylonStakeEstimatedFee

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

# convert the object into a dict
babylon_stake_estimated_fee_dict = babylon_stake_estimated_fee_instance.to_dict()
# create an instance of BabylonStakeEstimatedFee from a dict
babylon_stake_estimated_fee_from_dict = BabylonStakeEstimatedFee.from_dict(babylon_stake_estimated_fee_dict)

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