Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

CreateWithdrawActivity

Properties

Name Type Description Notes
request_id str The request ID that is used to track a request. The request ID is provided by you and must be unique within your organization. [optional]
staking_id str The ID of the corresponding staking position.
amount str The amount to withdraw. [optional]
fee TransactionRequestFee

Example

from cobo_waas2.models.create_withdraw_activity import CreateWithdrawActivity

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

# convert the object into a dict
create_withdraw_activity_dict = create_withdraw_activity_instance.to_dict()
# create an instance of CreateWithdrawActivity from a dict
create_withdraw_activity_from_dict = CreateWithdrawActivity.from_dict(create_withdraw_activity_dict)

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