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 unique identifier of the merge position (the id of the destination position)
Example
fromfireblocks.models.merge_stake_accounts_responseimportMergeStakeAccountsResponse# TODO update the JSON string belowjson="{}"# create an instance of MergeStakeAccountsResponse from a JSON stringmerge_stake_accounts_response_instance=MergeStakeAccountsResponse.from_json(json)
# print the JSON string representation of the objectprint(MergeStakeAccountsResponse.to_json())
# convert the object into a dictmerge_stake_accounts_response_dict=merge_stake_accounts_response_instance.to_dict()
# create an instance of MergeStakeAccountsResponse from a dictmerge_stake_accounts_response_from_dict=MergeStakeAccountsResponse.from_dict(merge_stake_accounts_response_dict)