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
fromfireblocks.models.create_multiple_accounts_requestimportCreateMultipleAccountsRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateMultipleAccountsRequest from a JSON stringcreate_multiple_accounts_request_instance=CreateMultipleAccountsRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateMultipleAccountsRequest.to_json())
# convert the object into a dictcreate_multiple_accounts_request_dict=create_multiple_accounts_request_instance.to_dict()
# create an instance of CreateMultipleAccountsRequest from a dictcreate_multiple_accounts_request_from_dict=CreateMultipleAccountsRequest.from_dict(create_multiple_accounts_request_dict)