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 vault account ID to use for signing the role revocation transactions.
adapter_token_link_ids
List[str]
A list of adapter token link IDs to be deactivated and unlinked.
Example
fromfireblocks.models.remove_layer_zero_adapters_requestimportRemoveLayerZeroAdaptersRequest# TODO update the JSON string belowjson="{}"# create an instance of RemoveLayerZeroAdaptersRequest from a JSON stringremove_layer_zero_adapters_request_instance=RemoveLayerZeroAdaptersRequest.from_json(json)
# print the JSON string representation of the objectprint(RemoveLayerZeroAdaptersRequest.to_json())
# convert the object into a dictremove_layer_zero_adapters_request_dict=remove_layer_zero_adapters_request_instance.to_dict()
# create an instance of RemoveLayerZeroAdaptersRequest from a dictremove_layer_zero_adapters_request_from_dict=RemoveLayerZeroAdaptersRequest.from_dict(remove_layer_zero_adapters_request_dict)