This feature is no longer supported.
Name | Type | Description | Notes |
---|
from fireblocks.models.transaction_request_network_staking import TransactionRequestNetworkStaking
# TODO update the JSON string below
json = "{}"
# create an instance of TransactionRequestNetworkStaking from a JSON string
transaction_request_network_staking_instance = TransactionRequestNetworkStaking.from_json(json)
# print the JSON string representation of the object
print(TransactionRequestNetworkStaking.to_json())
# convert the object into a dict
transaction_request_network_staking_dict = transaction_request_network_staking_instance.to_dict()
# create an instance of TransactionRequestNetworkStaking from a dict
transaction_request_network_staking_from_dict = TransactionRequestNetworkStaking.from_dict(transaction_request_network_staking_dict)