You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromcobo_waas2.models.create_unstake_activity_requestimportCreateUnstakeActivityRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateUnstakeActivityRequest from a JSON stringcreate_unstake_activity_request_instance=CreateUnstakeActivityRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateUnstakeActivityRequest.to_json())
# convert the object into a dictcreate_unstake_activity_request_dict=create_unstake_activity_request_instance.to_dict()
# create an instance of CreateUnstakeActivityRequest from a dictcreate_unstake_activity_request_from_dict=CreateUnstakeActivityRequest.from_dict(create_unstake_activity_request_dict)