Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.59 KB

File metadata and controls

33 lines (24 loc) · 1.59 KB

CreateWithdrawActivityRequest

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
app_initiator str The initiator of the staking activity. If you do not specify this property, the WaaS service will automatically designate the API key as the initiator. [optional]

Example

from cobo_waas2.models.create_withdraw_activity_request import CreateWithdrawActivityRequest

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

# convert the object into a dict
create_withdraw_activity_request_dict = create_withdraw_activity_request_instance.to_dict()
# create an instance of CreateWithdrawActivityRequest from a dict
create_withdraw_activity_request_from_dict = CreateWithdrawActivityRequest.from_dict(create_withdraw_activity_request_dict)

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